add binary file for keyboard

This commit is contained in:
cuu 2021-12-17 11:59:22 +08:00
parent 1429167abc
commit ce48b4986f
3 changed files with 2073 additions and 1 deletions

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

View File

@ -32,7 +32,7 @@ static const int8_t WHEEL_DENOM = 2;
static int8_t wheelBuffer;
static float rateToVelocityCurve(float input) {
return std::pow(std::abs(input) / 50, 1.5);
return std::pow(std::abs(input) / 50, 1.4);
}
template<Axis AXIS, int8_t Direction>