Scheduler_example16_Multitab.ino 820 B

123456789101112131415161718
  1. //This file is intentionally left blank.
  2. //
  3. //Arduino IDE plays some dirty tricks on the main sketch .ino file:
  4. //it rearranges #includes, blindly creates forward definitions,
  5. //includes every file in the project that does not have .c or .cpp
  6. //file extension.
  7. //
  8. //Usually it all turns well if you have only one source file and you are either
  9. //inexperienced or really expert C++ Arduino programmer.
  10. //For the folks with the middle ground skills level, when you want
  11. //to split your code into several .cpp files, it is best to leave
  12. //this main sketch empty.
  13. //
  14. //It doesn't matter where you define the void loop() and void setup().
  15. //Just make sure there is exactly one definition of each.
  16. //
  17. //And if you want to use standard Arduino functions
  18. //like digitalWrite or the Serial object - just add #include<Arduino.h>.