mirror of
https://gitlab.com/zwirbel/illucat.git
synced 2025-12-14 17:35:22 +01:00
15 lines
288 B
C
15 lines
288 B
C
#ifndef __SPROCKET_UTILS__
|
|
#define __SPROCKET_UTILS__
|
|
|
|
#include <Arduino.h>
|
|
|
|
#ifndef SPROCKET_PRINT
|
|
#define SPROCKET_PRINT 1
|
|
#endif
|
|
|
|
// TODO move to sprocket
|
|
|
|
int FORMAT_BUFFER_SIZE(const char* format, ...);
|
|
void PRINT_MSG(Print &out, const char* prefix, const char* format, ...);
|
|
|
|
#endif |