Move network stuff into their own functions
This commit is contained in:
parent
781035de64
commit
77e5be93f9
|
@ -3,7 +3,7 @@ Protospace lockout firmware
|
||||||
|
|
||||||
|
|
||||||
Code Structure
|
Code Structure
|
||||||
==============
|
--------------
|
||||||
|
|
||||||
- Declarations
|
- Declarations
|
||||||
- State definitions
|
- State definitions
|
||||||
|
@ -12,3 +12,9 @@ Code Structure
|
||||||
- States
|
- States
|
||||||
- State actions
|
- State actions
|
||||||
- Conditions that change the state
|
- Conditions that change the state
|
||||||
|
|
||||||
|
|
||||||
|
Dependencies
|
||||||
|
------------
|
||||||
|
|
||||||
|
Uses ArduinoJson Version 5.x.x
|
||||||
|
|
|
@ -94,6 +94,12 @@ void setup()
|
||||||
|
|
||||||
EEPROM.begin(EEPROM_SIZE);
|
EEPROM.begin(EEPROM_SIZE);
|
||||||
|
|
||||||
|
byte ar[6];
|
||||||
|
WiFi.macAddress(ar);
|
||||||
|
sprintf(wifiMACAddr, "%02X%02X%02X%02X%02X%02X", ar[0], ar[1], ar[2], ar[3], ar[4], ar[5]);
|
||||||
|
if (LOGGING) Serial.print("[INFO] Wifi MAC Address: ");
|
||||||
|
if (LOGGING) Serial.println(wifiMACAddr);
|
||||||
|
|
||||||
ticker.attach_ms(DELAY_TIME, tickerLoop);
|
ticker.attach_ms(DELAY_TIME, tickerLoop);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -218,11 +224,6 @@ void processWifiState()
|
||||||
|
|
||||||
if (LOGGING) Serial.print("[INFO] Wifi IP Address: ");
|
if (LOGGING) Serial.print("[INFO] Wifi IP Address: ");
|
||||||
if (LOGGING) Serial.println(WiFi.localIP());
|
if (LOGGING) Serial.println(WiFi.localIP());
|
||||||
byte ar[6];
|
|
||||||
WiFi.macAddress(ar);
|
|
||||||
sprintf(wifiMACAddr, "%02X%02X%02X%02X%02X%02X", ar[0], ar[1], ar[2], ar[3], ar[4], ar[5]);
|
|
||||||
if (LOGGING) Serial.print("[INFO] Wifi MAC Address: ");
|
|
||||||
if (LOGGING) Serial.println(wifiMACAddr);
|
|
||||||
|
|
||||||
wifiState = WIFI_CONNECTED;
|
wifiState = WIFI_CONNECTED;
|
||||||
}
|
}
|
||||||
|
@ -350,7 +351,8 @@ void processLEDState()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// JSON functions to prevent memory leaking
|
// JSON functions to prevent memory leaking see:
|
||||||
|
// https://arduinojson.org/v5/faq/i-found-a-memory-leak-in-the-library/
|
||||||
String serializeLockJson(uint8_t lockState)
|
String serializeLockJson(uint8_t lockState)
|
||||||
{
|
{
|
||||||
// Generated with: https://arduinojson.org/assistant/
|
// Generated with: https://arduinojson.org/assistant/
|
||||||
|
@ -377,36 +379,16 @@ String deserializeLockJson(String input)
|
||||||
return action;
|
return action;
|
||||||
}
|
}
|
||||||
|
|
||||||
void processCommState()
|
void postState()
|
||||||
{
|
{
|
||||||
static uint16_t commLockIdleCount = 0;
|
|
||||||
static uint16_t commCardIdleCount = 0;
|
|
||||||
|
|
||||||
switch (commState) {
|
|
||||||
case COMM_INIT:
|
|
||||||
commLockIdleCount = 0;
|
|
||||||
commCardIdleCount = 0;
|
|
||||||
|
|
||||||
commState = COMM_IDLE;
|
|
||||||
break;
|
|
||||||
case COMM_IDLE:
|
|
||||||
commLockIdleCount++;
|
|
||||||
commCardIdleCount++;
|
|
||||||
|
|
||||||
if (commLockIdleCount >= COMM_LOCK_IDLE_TIME) {
|
|
||||||
commState = COMM_LOCK;
|
|
||||||
} else if (commCardIdleCount >= COMM_CARD_IDLE_TIME) {
|
|
||||||
commState = COMM_CARD;
|
|
||||||
}
|
|
||||||
break;
|
|
||||||
case COMM_LOCK:
|
|
||||||
{
|
|
||||||
if (LOGGING) Serial.println("[INFO] Lock state HTTP begin.");
|
|
||||||
HTTPClient lockHTTP;
|
HTTPClient lockHTTP;
|
||||||
|
|
||||||
//lockHTTP.begin("https://url", "7a 9c f4 db 40 d3 62 5a 6e 21 bc 5c cc 66 c8 3e a1 45 59 38"); //HTTPS
|
//lockHTTP.begin("https://url", "7a 9c f4 db 40 d3 62 5a 6e 21 bc 5c cc 66 c8 3e a1 45 59 38"); //HTTPS
|
||||||
lockHTTP.begin(SOCKET_URL + wifiMACAddr);
|
lockHTTP.begin(SOCKET_URL + wifiMACAddr);
|
||||||
lockHTTP.addHeader("Content-Type", "application/json");
|
lockHTTP.addHeader("Content-Type", "application/json");
|
||||||
|
|
||||||
|
if (LOGGING) Serial.println("[INFO] Lock state HTTP begin.");
|
||||||
|
|
||||||
if (LOGGING) Serial.print("[INFO] HTTP POST: ");
|
if (LOGGING) Serial.print("[INFO] HTTP POST: ");
|
||||||
String postData = serializeLockJson(lockState);
|
String postData = serializeLockJson(lockState);
|
||||||
if (LOGGING) Serial.println(postData);
|
if (LOGGING) Serial.println(postData);
|
||||||
|
@ -434,20 +416,18 @@ void processCommState()
|
||||||
} else {
|
} else {
|
||||||
if (LOGGING) Serial.printf("[ERROR] POST failed, error: %s\n", lockHTTP.errorToString(lockHTTPCode).c_str());
|
if (LOGGING) Serial.printf("[ERROR] POST failed, error: %s\n", lockHTTP.errorToString(lockHTTPCode).c_str());
|
||||||
}
|
}
|
||||||
|
|
||||||
commLockIdleCount = 0;
|
|
||||||
|
|
||||||
commState = COMM_IDLE;
|
|
||||||
}
|
}
|
||||||
break;
|
|
||||||
case COMM_CARD:
|
void getCards()
|
||||||
{
|
{
|
||||||
if (LOGGING) Serial.println("[INFO] Card state HTTP begin.");
|
|
||||||
HTTPClient cardHTTP;
|
HTTPClient cardHTTP;
|
||||||
|
|
||||||
//cardHTTP.begin("https://url", "7a 9c f4 db 40 d3 62 5a 6e 21 bc 5c cc 66 c8 3e a1 45 59 38"); //HTTPS
|
//cardHTTP.begin("https://url", "7a 9c f4 db 40 d3 62 5a 6e 21 bc 5c cc 66 c8 3e a1 45 59 38"); //HTTPS
|
||||||
cardHTTP.begin(CARD_URL + wifiMACAddr + "/");
|
cardHTTP.begin(CARD_URL + wifiMACAddr + "/");
|
||||||
cardHTTP.addHeader("Content-Type", "application/json");
|
cardHTTP.addHeader("Content-Type", "application/json");
|
||||||
|
|
||||||
|
if (LOGGING) Serial.println("[INFO] Card state HTTP begin.");
|
||||||
|
|
||||||
if (LOGGING) Serial.println("[INFO] HTTP GET");
|
if (LOGGING) Serial.println("[INFO] HTTP GET");
|
||||||
int16_t cardHTTPCode = cardHTTP.GET();
|
int16_t cardHTTPCode = cardHTTP.GET();
|
||||||
|
|
||||||
|
@ -473,11 +453,50 @@ void processCommState()
|
||||||
} else {
|
} else {
|
||||||
if (LOGGING) Serial.printf("[ERROR] POST failed, error: %s\n", cardHTTP.errorToString(cardHTTPCode).c_str());
|
if (LOGGING) Serial.printf("[ERROR] POST failed, error: %s\n", cardHTTP.errorToString(cardHTTPCode).c_str());
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
void processCommState()
|
||||||
|
{
|
||||||
|
static uint16_t commLockIdleCount = 0;
|
||||||
|
static uint16_t commCardIdleCount = 0;
|
||||||
|
|
||||||
|
switch (commState) {
|
||||||
|
case COMM_INIT:
|
||||||
|
commLockIdleCount = 0;
|
||||||
commCardIdleCount = 0;
|
commCardIdleCount = 0;
|
||||||
|
|
||||||
|
commState = COMM_IDLE;
|
||||||
|
break;
|
||||||
|
case COMM_IDLE:
|
||||||
|
commLockIdleCount++;
|
||||||
|
commCardIdleCount++;
|
||||||
|
|
||||||
|
if (commLockIdleCount >= COMM_LOCK_IDLE_TIME) {
|
||||||
|
commState = COMM_LOCK;
|
||||||
|
} else if (commCardIdleCount >= COMM_CARD_IDLE_TIME) {
|
||||||
|
commState = COMM_CARD;
|
||||||
|
}
|
||||||
|
break;
|
||||||
|
case COMM_LOCK:
|
||||||
|
{
|
||||||
|
postState();
|
||||||
|
|
||||||
|
commLockIdleCount = 0;
|
||||||
|
|
||||||
commState = COMM_IDLE;
|
commState = COMM_IDLE;
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
|
case COMM_CARD:
|
||||||
|
{
|
||||||
|
getCards();
|
||||||
|
|
||||||
|
commCardIdleCount = 0;
|
||||||
|
|
||||||
|
commState = COMM_IDLE;
|
||||||
|
|
||||||
|
Serial.printf("******heap size: %u\n", ESP.getFreeHeap());
|
||||||
|
Serial.printf("******frag.: %u\n", ESP.getHeapFragmentation());
|
||||||
|
}
|
||||||
|
break;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue
Block a user