Nelze vybrat více než 25 témat
Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.
|
- #include "Logging.h"
-
- namespace logging {
-
- void setup() {
- #if _DEBUG
- while (!Serial);
- #endif
-
- if (Serial) {
- Serial.begin(LOG_SERIAL_SPEED);
- Log.begin(LOG_LEVEL, &Serial);
- }
- }
-
- }
|