You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
env: Arduino 1.8.9 + Arduino_Core_STM32 + RobotDyn STM32 MINI
code:
// It does not work if there is this line.// #include <STM32FreeRTOS.h>
#include"Keyboard.h"voidsetup()
{
Keyboard.begin();
delay(1000);
Keyboard.print("test");
while (1);
}
voidloop()
{
}