People have quite a lot of problems with PlatformIO.
If you want to get away from the Arduino IDE to something better. Consider using VisualMicro with VisualStudio.
Visual micro sits on top of the Arduino and maintains it's structure. This...
I’m already actively using Visual Studio for software development, this information will be very useful for me, thank you. I started the trial membership and it’s really impressive, I liked it, but will I not be able to use it when my trial...
Hello, I want to switch from Arduino IDE to Visual Studio Code. I installed Platform IO but I have a problem.
I have a custom HID setup that I defined in Arduino IDE.
#elif defined(USB_KEYBOARD_RAWHID)
#define VENDOR_ID 0x1209...
Teensy's USB keyboard code uses the "boot protocol" which only supports 6KRO.
Here's a quick attempt to add NKRO support. To use this, find the hidden folder where Teensy's core library is installed. Then put these 4 files into that folder...
Oh, I should mention the KEYBOARD_SIZE define in usb_desc.h determines whether boot/6KRO or NKRO is used. Set to 8 bytes for normal, or 16 bytes to use NKRO. I only edited the define for the Tools > USB Type with just keyboard. If you want any...
Thank you so much, this really worked great and saved me from a lot of trouble. Now after programming this, is it correct that it will work for a lifetime as long as I don't update it?
Actually, I’m not designing a physical keyboard—it's more like a software-supported virtual keyboard. For example, it records on-screen keyboard and mouse actions and then replays them. I managed to do this with QMK; I bypassed the NKRO...
Hello everyone,
I've developed a comprehensive custom input device controller for Teensy 4.0 in Arduino IDE. The project works as a specialized keyboard/mouse interface for assistive technology. Everything works well except for one critical...