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.

8 regels
116 B

  1. #include "Debug.h"
  2. void waitForSerial() {
  3. #ifdef _DEBUG
  4. while (!Serial);
  5. Serial.begin(115200);
  6. #endif // _DEBUG
  7. }