Compare commits
2 Commits
6ac860861d
...
88b8b757b2
Author | SHA1 | Date | |
---|---|---|---|
|
88b8b757b2 | ||
|
ff3d999449 |
@ -70,6 +70,7 @@ void setup()
|
|||||||
sab.getWebServer().addApiRoutine("/sab/wifi/stainfo", &(staWifiInfoApi), &sab, WEBServer<WEBClient>::GET);
|
sab.getWebServer().addApiRoutine("/sab/wifi/stainfo", &(staWifiInfoApi), &sab, WEBServer<WEBClient>::GET);
|
||||||
sab.getWebServer().addApiRoutine("/sab/systeminfo", &(systemInfoApi), &sab, WEBServer<WEBClient>::GET);
|
sab.getWebServer().addApiRoutine("/sab/systeminfo", &(systemInfoApi), &sab, WEBServer<WEBClient>::GET);
|
||||||
sab.getWebServer().addApiRoutine("/sab/power/info", &(powerInfoApi), &sab, WEBServer<WEBClient>::GET);
|
sab.getWebServer().addApiRoutine("/sab/power/info", &(powerInfoApi), &sab, WEBServer<WEBClient>::GET);
|
||||||
|
sab.getWebServer().addApiRoutine("/sab/power/set/freq", &(powerSettingsApi), &sab, WEBServer<WEBClient>::GET);
|
||||||
sab.getWebServer().addApiRoutine("/sab/io/get/level", &(ioGetLevelApi), vio.ioState, WEBServer<WEBClient>::GET);
|
sab.getWebServer().addApiRoutine("/sab/io/get/level", &(ioGetLevelApi), vio.ioState, WEBServer<WEBClient>::GET);
|
||||||
sab.getWebServer().addApiRoutine("/sab/io/set/level", &(ioSetLevelApi), &sab, WEBServer<WEBClient>::GET);
|
sab.getWebServer().addApiRoutine("/sab/io/set/level", &(ioSetLevelApi), &sab, WEBServer<WEBClient>::GET);
|
||||||
sab.getWebServer().addApiRoutine("/sab/io/get/mode", &(ioGetModeApi), &sab, WEBServer<WEBClient>::GET);
|
sab.getWebServer().addApiRoutine("/sab/io/get/mode", &(ioGetModeApi), &sab, WEBServer<WEBClient>::GET);
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
#define VERSIONS_H
|
#define VERSIONS_H
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Here is listed the version history of the soft with some information about them.
|
* Here is listed the version history of the soft with some information about each one of them.
|
||||||
*
|
*
|
||||||
* Versioning scheme MAJOR.MINOR.PATCH
|
* Versioning scheme MAJOR.MINOR.PATCH
|
||||||
*/
|
*/
|
||||||
@ -23,6 +23,11 @@
|
|||||||
#define SOFT_VERSION "1.4.2" //Added new functionalities as well as login check
|
#define SOFT_VERSION "1.4.2" //Added new functionalities as well as login check
|
||||||
#define SOFT_VERSION "1.4.3" //Added ICACHE_RAM_ATTR because of a strange performance hit
|
#define SOFT_VERSION "1.4.3" //Added ICACHE_RAM_ATTR because of a strange performance hit
|
||||||
#define SOFT_VERSION "1.5.0" //Added new rtcInfo view + DS3231 internal temperature
|
#define SOFT_VERSION "1.5.0" //Added new rtcInfo view + DS3231 internal temperature
|
||||||
|
#define SOFT_VERSION "1.5.1" //Corrected a mistake in the sendPageToClientFromSdCard method (WEBServer class)
|
||||||
|
#define SOFT_VERSION "1.5.2" //Started to put every string in the flash memory instead of the ram
|
||||||
|
#define SOFT_VERSION "1.5.3" //Minor changes and fixes to the ConnectivityManager class
|
||||||
|
#define SOFT_VERSION "1.5.4" //Updated TCPClient (using memmove instead of strcpy)
|
||||||
|
#define SOFT_VERSION "1.5.5" //WEBServer now parsing form parameters in the post data section
|
||||||
|
#define SOFT_VERSION "1.5.6" //Added new SAB method to set te cpu frequency at run time
|
||||||
|
|
||||||
#endif //VERSIONS_H
|
#endif //VERSIONS_H
|
||||||
|
Loading…
Reference in New Issue
Block a user