move web plugins to sprocket-plugin-web repo, rename utils

This commit is contained in:
2018-11-15 16:04:38 +01:00
parent 85edf8ec93
commit 0ecadc9d86
11 changed files with 36 additions and 284 deletions

15
src/utils/print.h Normal file
View File

@@ -0,0 +1,15 @@
#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