#ifndef SCREEN_H #define SCREEN_H #include 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