4#include "dumbdisplay.h"
5#include <SoftwareSerial.h>
17 bool enableSerial =
false,
unsigned long serialBaud = DD_SERIAL_BAUD):
22 const char* getWhat() {
26 return pSS->available();
31 void print(
const String &s) {
34 void print(
const char *p) {
37 void write(uint8_t b) {
40 void write(
const uint8_t *buf,
size_t size) {
41 pSS->write(buf, size);
43 bool preConnect(
bool firstCall) {
44 DDInputOutput::preConnect(firstCall);
57 bool canConnectPassive() {
Subclass of DDInputOutput.
Definition: ssdumbdisplay.h:10