Files

  • Not Found
  • Invalid object requested. SHA must identify a commit or a tree.
Last update 6 months 1 week by Stephen Crane
Filesmqtt-tft
..
data
.gitignore
LICENSE
Makefile
README.md
configuration.cpp
configuration.h
dbg.h
graph.cpp
graph.h
label.cpp
label.h
mqtt-tft.ino
rssi.h
stator.h
dbg.h
#ifndef __DBG_H__ #define __DBG_H__ extern bool debugging; #define OUT(x) Serial.x #define DBG(x) if (debugging) { OUT(x); } #define ERR(x) OUT(x) #endif
Report a bug