Advertisement
odilonafonso

SampleMultiTab.ino

Jul 19th, 2016
62
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.19 KB | None | 0 0
  1. extern int varTeste;
  2. void setup() {
  3.    Serial.begin(9600);
  4.    varTeste=0;
  5. }
  6.  
  7. void loop() {
  8.    // aciona funcSample na tab secundaria
  9.    varTeste++;
  10.    funcSample();
  11.    delay(1000);  
  12. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement