You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

main.ino 121B

12345678910111213
  1. #include "AppCore.h"
  2. AppCore g_appCore;
  3. void setup()
  4. {
  5. g_appCore.setup();
  6. }
  7. void loop()
  8. {
  9. g_appCore.loop();
  10. }