#include "inc.h"
int somador = 10;
void setup(void) {
Serial.begin(115200); //Uart > comunicação de bytes (Tx/Rx) Taxa:115200bps
Serial.println("Boa Noite");//ln -> new line \n (salto de linha)
incrementa();
incrementa(); //??
}
void loop(void) {
// put your main code here, to run repeatedly:
}