summaryrefslogtreecommitdiff
path: root/include/badge/log.h
blob: cbbe134f046a0c9272c7121f9333f876a08da1ad (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#pragma once

#include <Arduino.h>

namespace de::uvok::badge
{
#define LOG_F(...)                                                                                                     \
    {                                                                                                                  \
        Serial.printf("[%u] ", millis());                                                                              \
        Serial.printf(__VA_ARGS__);                                                                                     \
    }

} // namespace de::uvok::badge