Você não pode selecionar mais de 25 tópicos
Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.
|
- #include "Logging.h"
-
- namespace logging {
-
- void setup() {
- #if _DEBUG
- while (!Serial);
- #endif
-
- if (Serial) {
- Serial.begin(LOG_SERIAL_SPEED);
- Log.begin(LOG_LEVEL, &Serial);
-
- Log.notice(F("Starting...\n"));
- }
- }
-
- }
|