remove hello world
This commit is contained in:
@@ -26,7 +26,6 @@ void setupLoop() {
|
|||||||
WiFiPrefsError |= nvs_get_str(WiFiHandle, passTag, NULL, &pwSize);
|
WiFiPrefsError |= nvs_get_str(WiFiHandle, passTag, NULL, &pwSize);
|
||||||
uint8_t authMode;
|
uint8_t authMode;
|
||||||
WiFiPrefsError |= nvs_get_u8(WiFiHandle, authTag, &authMode);
|
WiFiPrefsError |= nvs_get_u8(WiFiHandle, authTag, &authMode);
|
||||||
printf("World\n");
|
|
||||||
if (WiFiPrefsError == ESP_ERR_NVS_NOT_FOUND) {
|
if (WiFiPrefsError == ESP_ERR_NVS_NOT_FOUND) {
|
||||||
printf("Didn't find creds\n");
|
printf("Didn't find creds\n");
|
||||||
// Make the RGB LED a certain color (Blue?)
|
// Make the RGB LED a certain color (Blue?)
|
||||||
|
|||||||
@@ -19,7 +19,6 @@ Encoder* bottomEnc = new Encoder(InputEnc_PIN_A, InputEnc_PIN_B);
|
|||||||
Calibration calib;
|
Calibration calib;
|
||||||
|
|
||||||
void mainApp() {
|
void mainApp() {
|
||||||
printf("Hello ");
|
|
||||||
esp_err_t ret = nvs_flash_init(); // change to secure init logic soon!!
|
esp_err_t ret = nvs_flash_init(); // change to secure init logic soon!!
|
||||||
// 2. If NVS is full or corrupt (common after flashing new code), erase and retry
|
// 2. If NVS is full or corrupt (common after flashing new code), erase and retry
|
||||||
if (ret == ESP_ERR_NVS_NO_FREE_PAGES || ret == ESP_ERR_NVS_NEW_VERSION_FOUND) {
|
if (ret == ESP_ERR_NVS_NO_FREE_PAGES || ret == ESP_ERR_NVS_NEW_VERSION_FOUND) {
|
||||||
|
|||||||
Reference in New Issue
Block a user