最終更新:2024-11-11 (月) 09:40:02 (27d)  

tokkyo/Projects/Apple Keyboard Emulator
Top / tokkyo / Projects / Apple Keyboard Emulator

問題

トラブルシュート

ATOMS3 Lite用のファーム

  • 下記を焼いて挿しておけばOK
    #include <M5AtomS3.h>
    #include <USB.h>
    #include <USBHIDKeyboard.h>
    
    USBHIDKeyboard Keyboard;
    
    void setup() {
        AtomS3.begin(true);
    
        USB.VID(0x05AC);
        USB.PID(0x021F);
    
        USB.productName("Apple Keyboard Emulator (ATOMS3 Lite as A1242 JIS)");
        USB.manufacturerName("tokkyo");
        // USB.firmwareVersion(0x0070);
        // USB.usbPower(20);
    
        Keyboard.begin();
        USB.begin();
    
        AtomS3.dis.setBrightness(100);
        AtomS3.dis.drawpix(0x00ff00);
        AtomS3.update();
    }
    
    void loop() {
    
    }

メモ

対応

関連