Skip to content

Commit

Permalink
Update
Browse files Browse the repository at this point in the history
  • Loading branch information
mp-se committed Jun 15, 2024
1 parent 21c42a5 commit 2eb37de
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -150,6 +150,8 @@ void setup() {
// Do this setup for all modes exect wifi setup
switch (runMode) {
case RunMode::wifiSetupMode:
ledOn(LedColor::RED); // Red or fast flashing to indicate connection
// error
myWifi.startWifiAP();
break;

Expand Down Expand Up @@ -200,7 +202,6 @@ void setup() {
if (myWifi.isConnected()) {
Log.notice(F("Main: Activating web server." CR));
ledOn(LedColor::BLUE); // Blue or slow flashing to indicate config mode
// myWifi.timeSync();
PERF_BEGIN("main-wifi-ota");
if (myOta.checkFirmwareVersion()) myOta.updateFirmware();
PERF_END("main-wifi-ota");
Expand All @@ -218,6 +219,7 @@ void setup() {
break;

default:
ledOn(LedColor::GREEN); // Green or fast flashing to indicate gravity mode
break;
}

Expand Down
5 changes: 5 additions & 0 deletions src_docs/source/releases.rst
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,9 @@ v2.0.0-alfa4

Issues adressed
++++++++++++++++
* Fixed led indicator when going into wifi mode
* Turning off led when going to sleep mode or doing reset

* Fixed push format updates
* Enabled file upload / delete features (Tools)
* Updated build workflows
Expand All @@ -24,8 +27,10 @@ Known Issues
++++++++++++

* OneWire (Reading temperature probe), does not work on ESP32C3 boards, timeout error. Problem resides in esp-idf framework.
https://github.com/espressif/arduino-esp32/issues/8056
* RGB led on ESP32S3 does not work due to bug in Arduino for ESP32 (Manually edit the pins_arduino.h for esp32s3 will fix the issue, #define RGB_BUILTIN LED_BUILTIN+SOC_GPIO_PIN_COUNT)


v2.0.0-alfa3
============

Expand Down

0 comments on commit 2eb37de

Please sign in to comment.