Add mozc-dial nine dial edition.

Co-authored-by: Takashi Toyoshima <toyoshim@google.com>
Co-authored-by: Shun Ikejima <ikejima@google.com>
This commit is contained in:
Shun Ikejima
2025-10-28 18:19:10 +09:00
parent 1775d344f1
commit 994d22bb71
76 changed files with 810960 additions and 7327 deletions

View File

@@ -14,12 +14,16 @@
#include "../common/usage_tables.h"
#include "../common/usb_hid_keyboard.h"
#define MOTOR_DIRECTION MotorController::Direction::kForward
//#define MOTOR_DIRECTION MotorController::Direction::kBackward
int main() {
// GPIO0 and 1 are used for stdout, and stdin by default.
stdio_init_all();
// GPIO17, 18, 19, and 20 are used for motor phase control.
MotorController motor_controller(MotorController::Mode::k1Motor);
MotorController motor_controller(MotorController::Mode::k1Motor,
MOTOR_DIRECTION);
// GPIO2, 3, 4, 5, 6, and 7 are used for 6bit photo sensing.
PhotoSensor photo_sensor(2, 3, 4, 5, 6, 7);