In order to keep filters up to date, please use this repo.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#ifndef SERIAL_RATE | |
#define SERIAL_RATE 115200 | |
#endif | |
unsigned long serial_delay = 50; | |
void setup() { | |
Serial.begin(SERIAL_RATE); | |
//Attendre que l'usb soit connecté | |
while (!Serial) { |