Automatic plant monitoring and watering system
Go to file
Starbeamrainbowlabs d4db3ddc34
autoplant: attempt to fix crash, but we're just going around in circles
We get this crash:

path/to/autoplant/autoplant/autoplant.ino: In function 'void connect_wifi()':
autoplant:85:5: error: 'esp_wifi_sta_wpa2_ent_set_identity' was not declared in this scope
     esp_wifi_sta_wpa2_ent_set_identity((uint8_t *)user, strlen(user));
     ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
autoplant:86:5: error: 'esp_wifi_sta_wpa2_ent_set_username' was not declared in this scope
     esp_wifi_sta_wpa2_ent_set_username((uint8_t *)user, strlen(user));
     ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
autoplant:87:5: error: 'esp_wifi_sta_wpa2_ent_set_password' was not declared in this scope
     esp_wifi_sta_wpa2_ent_set_password((uint8_t *)pass, strlen(pass));
     ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
autoplant:88:2: error: 'esp_wpa2_config_t' was not declared in this scope
  esp_wpa2_config_t config = WPA2_CONFIG_INIT_DEFAULT();
  ^~~~~~~~~~~~~~~~~
path/to/autoplant/autoplant/autoplant.ino:88:2: note: suggested alternative: 'esp_eth_config_t'
  esp_wpa2_config_t config = WPA2_CONFIG_INIT_DEFAULT();
  ^~~~~~~~~~~~~~~~~
  esp_eth_config_t
autoplant:89:32: error: 'config' was not declared in this scope
  esp_wifi_sta_wpa2_ent_enable(&config);
                                ^~~~~~
path/to/autoplant/autoplant/autoplant.ino:89:32: note: suggested alternative: 'confstr'
  esp_wifi_sta_wpa2_ent_enable(&config);
                                ^~~~~~
                                confstr
autoplant:89:2: error: 'esp_wifi_sta_wpa2_ent_enable' was not declared in this scope
  esp_wifi_sta_wpa2_ent_enable(&config);
  ^~~~~~~~~~~~~~~~~~~~~~~~~~~~
path/to/autoplant/autoplant/autoplant.ino:89:2: note: suggested alternative: 'gpio_pin_wakeup_enable'
  esp_wifi_sta_wpa2_ent_enable(&config);
  ^~~~~~~~~~~~~~~~~~~~~~~~~~~~
  gpio_pin_wakeup_enable
Multiple libraries were found for "WiFi.h"
 Used: /home/USERNAME/.arduino15/packages/esp32/hardware/esp32/2.0.2/libraries/WiFi
 Not used: /home/USERNAME/Downloads/arduino-1.8.16/libraries/WiFi
exit status 1
'esp_wifi_sta_wpa2_ent_set_identity' was not declared in this scope
2022-01-21 18:41:14 +00:00
analog_channel_scanner Change pin numbers for esp8266 → esp32 change, but whether they are actually correct of not is correctly unclear 2022-01-10 14:37:51 +00:00
autoplant autoplant: attempt to fix crash, but we're just going around in circles 2022-01-21 18:41:14 +00:00
lib autoplant: implement mqtt, but it's not tested yet. 2021-11-20 18:52:55 +00:00
.gitignore Design initial grep for water level sensor 2021-12-07 22:34:11 +00:00
.gitmodules autoplant: implement mqtt, but it's not tested yet. 2021-11-20 18:52:55 +00:00
LICENSE Initial commit 2021-12-13 20:02:34 +00:00
README.md Initial commit 2021-12-13 20:02:34 +00:00
dimensions.txt Design initial grep for water level sensor 2021-12-07 22:34:11 +00:00
water level sensor grip.3mf Design initial grep for water level sensor 2021-12-07 22:34:11 +00:00
water level sensor grip.blend Design initial grep for water level sensor 2021-12-07 22:34:11 +00:00

README.md

autoplant

Automatic plant monitoring and watering system