view espNode/desk/src/display.h @ 1716:2bed2f68243c

older work
author drewp@bigasterisk.com
date Sun, 07 Aug 2022 02:25:40 -0700
parents 6c42c1f64f00
children
line wrap: on
line source

#ifndef INCLUDED_DISPLAY
#define INCLUDED_DISPLAY
#include <string>

#ifndef TFT_DISPOFF
#define TFT_DISPOFF 0x28
#endif

#ifndef TFT_SLPIN
#define TFT_SLPIN 0x10
#endif

namespace display {
void Setup();
void Message(std::string msg);
}  // namespace display
#endif