Compare commits
3 Commits
v1.5.11-be
...
v1.5.11-be
Author | SHA1 | Date | |
---|---|---|---|
dca9ef8d08 | |||
513e02b867 | |||
99babe2b4a |
@@ -1,5 +1,13 @@
|
|||||||
# Changelog
|
# Changelog
|
||||||
|
|
||||||
|
## [1.5.11-beta2] - 2025-08-28
|
||||||
|
### Added
|
||||||
|
- add logging for healthy spoolman instance check
|
||||||
|
|
||||||
|
### Changed
|
||||||
|
- update platformio.ini for beta version v1.5.11-beta2
|
||||||
|
|
||||||
|
|
||||||
## [1.5.11-beta1] - 2025-08-28
|
## [1.5.11-beta1] - 2025-08-28
|
||||||
### Changed
|
### Changed
|
||||||
- update platformio.ini for beta version v1.5.11-beta1
|
- update platformio.ini for beta version v1.5.11-beta1
|
||||||
|
@@ -9,7 +9,7 @@
|
|||||||
; https://docs.platformio.org/page/projectconf.html
|
; https://docs.platformio.org/page/projectconf.html
|
||||||
|
|
||||||
[common]
|
[common]
|
||||||
version = "1.5.11-beta1"
|
version = "1.5.11-beta2"
|
||||||
to_old_version = "1.5.0"
|
to_old_version = "1.5.0"
|
||||||
|
|
||||||
##
|
##
|
||||||
|
@@ -700,6 +700,8 @@ bool checkSpoolmanInstance() {
|
|||||||
oledShowTopRow();
|
oledShowTopRow();
|
||||||
spoolmanConnected = true;
|
spoolmanConnected = true;
|
||||||
returnValue = strcmp(status, "healthy") == 0;
|
returnValue = strcmp(status, "healthy") == 0;
|
||||||
|
Serial.print("Spoolman instance is healthy: ");
|
||||||
|
Serial.println(returnValue);
|
||||||
}else{
|
}else{
|
||||||
spoolmanConnected = false;
|
spoolmanConnected = false;
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user