27-07-2023, 20:09
Hello community,
I am currently trying the AQM2 with the Duino Pro2 Compact as a defined extra sensor
#define GETDATA_FROM_WIFISENSORS 1 // 1= Enable, 0= Disable
#define WIFISENSORS_WEBSERVER_PORT 80 // WebServer Port defined on WD units
const char* WIFIunit_address [][4]= { "192.168.12.104" // IP address of first WiFi sensor
, "" // IP address of second WiFi sensor
get the values for temp and hum.
The Pro2 Compact only receives the air quality values.
The AQM2 outputs the values in the web browser.
The 4Pro RX unit receives all data from the AQM2
The WIFI sensor debug output from the Pro2 shows me the following:
20:53:15.741 ->
20:53:15.741 -> Checking defined WiFi sensors:
20:53:15.741 -> WiFi Sensor 1 is defined at IP: 192.168.12.104, and its alive. Ping took: 60mS
20:53:15.787 -> WiFi Sensor 2 is not defined.
20:53:15.834 -> WiFi Sensor 3 is not defined.
20:53:15.834 -> WiFi Sensor 4 is not defined.
20:53:15.834 ->
20:53:15.834 -> Connection to WiFi Sensor 192.168.12.104, OK!
20:53:16.018 -> Deserialize JSON() from IP: 192.168.12.104, failed with code: NoMemory
20:53:16.065 -> Getting data from 192.168.12.104 took: 230 mS
20:53:16.065 ->
20:53:16.065 -> Processing all WiFi Sensors took: 252 mS
20:53:16.111 ->
here comes the error message: failed with code: NoMemory.
How can I fix the error?
Greetings Andre
I am currently trying the AQM2 with the Duino Pro2 Compact as a defined extra sensor
#define GETDATA_FROM_WIFISENSORS 1 // 1= Enable, 0= Disable
#define WIFISENSORS_WEBSERVER_PORT 80 // WebServer Port defined on WD units
const char* WIFIunit_address [][4]= { "192.168.12.104" // IP address of first WiFi sensor
, "" // IP address of second WiFi sensor
get the values for temp and hum.
The Pro2 Compact only receives the air quality values.
The AQM2 outputs the values in the web browser.
The 4Pro RX unit receives all data from the AQM2
The WIFI sensor debug output from the Pro2 shows me the following:
20:53:15.741 ->
20:53:15.741 -> Checking defined WiFi sensors:
20:53:15.741 -> WiFi Sensor 1 is defined at IP: 192.168.12.104, and its alive. Ping took: 60mS
20:53:15.787 -> WiFi Sensor 2 is not defined.
20:53:15.834 -> WiFi Sensor 3 is not defined.
20:53:15.834 -> WiFi Sensor 4 is not defined.
20:53:15.834 ->
20:53:15.834 -> Connection to WiFi Sensor 192.168.12.104, OK!
20:53:16.018 -> Deserialize JSON() from IP: 192.168.12.104, failed with code: NoMemory
20:53:16.065 -> Getting data from 192.168.12.104 took: 230 mS
20:53:16.065 ->
20:53:16.065 -> Processing all WiFi Sensors took: 252 mS
20:53:16.111 ->
here comes the error message: failed with code: NoMemory.
How can I fix the error?
Greetings Andre