66 lines
1.7 KiB
C++
66 lines
1.7 KiB
C++
/**************************************************************
|
|
* This is a DEMO. You can use it only for development and testing.
|
|
*
|
|
* If you would like to add these features to your product,
|
|
* please contact Blynk for Business:
|
|
*
|
|
* http://www.blynk.io/
|
|
*
|
|
**************************************************************/
|
|
|
|
#include "Settings.h"
|
|
#include <BlynkSimpleEsp32.h>
|
|
#include "BlynkState.h"
|
|
#include "ConfigStore.h"
|
|
#include "ResetButton.h"
|
|
#include "ConfigMode.h"
|
|
#include "Indicator.h"
|
|
#include "OTA.h"
|
|
|
|
inline
|
|
void BlynkState::set(State m) {
|
|
if (state != m) {
|
|
DEBUG_PRINT(String(StateStr[state]) + " => " + StateStr[m]);
|
|
state = m;
|
|
}
|
|
}
|
|
|
|
class Provisioning {
|
|
|
|
public:
|
|
void begin()
|
|
{
|
|
DEBUG_PRINT("");
|
|
DEBUG_PRINT("Hardware v" + String(BOARD_HARDWARE_VERSION));
|
|
DEBUG_PRINT("Firmware v" + String(BOARD_FIRMWARE_VERSION));
|
|
|
|
indicator_init();
|
|
button_init();
|
|
config_init();
|
|
|
|
if (configStore.flagConfig) {
|
|
BlynkState::set(MODE_CONNECTING_NET);
|
|
} else {
|
|
BlynkState::set(MODE_WAIT_CONFIG);
|
|
}
|
|
}
|
|
|
|
void run() {
|
|
switch (BlynkState::get()) {
|
|
case MODE_WAIT_CONFIG:
|
|
case MODE_CONFIGURING: enterConfigMode(); break;
|
|
case MODE_CONNECTING_NET: enterConnectNet(); break;
|
|
case MODE_CONNECTING_CLOUD: enterConnectCloud(); break;
|
|
case MODE_RUNNING: Blynk.run(); break;
|
|
case MODE_OTA_UPGRADE: enterOTA(); break;
|
|
case MODE_SWITCH_TO_STA: enterSwitchToSTA(); break;
|
|
case MODE_RESET_CONFIG: enterResetConfig(); break;
|
|
default: enterError(); break;
|
|
}
|
|
}
|
|
|
|
};
|
|
|
|
Provisioning BlynkProvisioning;
|
|
|