mirror of
https://github.com/richonguzman/LoRa_APRS_iGate.git
synced 2026-03-12 16:34:19 +01:00
minor correction to function name
This commit is contained in:
parent
8822966fa7
commit
fc4366d80f
|
|
@ -41,7 +41,7 @@ void setup() {
|
|||
Serial.begin(115200);
|
||||
pinMode(greenLed, OUTPUT);
|
||||
delay(1000);
|
||||
Utils::setupDiplay();
|
||||
Utils::setupDisplay();
|
||||
WIFI_Utils::setup();
|
||||
LoRa_Utils::setup();
|
||||
Utils::validateDigiFreqs();
|
||||
|
|
|
|||
|
|
@ -66,7 +66,7 @@ String getLocalIP() {
|
|||
return "IP : " + String(WiFi.localIP()[0]) + "." + String(WiFi.localIP()[1]) + "." + String(WiFi.localIP()[2]) + "." + String(WiFi.localIP()[3]);
|
||||
}
|
||||
|
||||
void setupDiplay() {
|
||||
void setupDisplay() {
|
||||
setup_display();
|
||||
digitalWrite(greenLed,HIGH);
|
||||
Serial.println("\nStarting iGate: " + Config.callsign + " Version: " + versionDate);
|
||||
|
|
|
|||
|
|
@ -7,7 +7,7 @@ namespace Utils {
|
|||
|
||||
void processStatus();
|
||||
String getLocalIP();
|
||||
void setupDiplay();
|
||||
void setupDisplay();
|
||||
void activeStations();
|
||||
void checkBeaconInterval();
|
||||
void checkDisplayInterval();
|
||||
|
|
|
|||
Loading…
Reference in a new issue