14 lines
377 B
C++
14 lines
377 B
C++
#ifndef SCREEN_H
|
|
#define SCREEN_H
|
|
|
|
#include <string>
|
|
using namespace std;
|
|
|
|
void displayInit();
|
|
void displayString(string inputString);
|
|
void displayWiFiInformation(string wifiSSID, string wifiPassword);
|
|
void displayDirection(int &direction);
|
|
void displayBool(bool &state);
|
|
void displayControlStatus(float &throttle, int &direction, bool &horn, bool &bell, bool &lights);
|
|
|
|
#endif |