I have a simple Temperature/Humidity Monitor with an ESP8266 NodeMCU using a DHT22 running on a local server on a Raspberry Pi. This project works fine locally without issue.
I am using the HTTP RESTful API’s “Write pin value via GET” to send the Temperature and Humidity values to a project running on Blynk-Cloud.
The webhook for temperature works fine, I am sending V0 local to V10 Cloud: http://blynk-cloud/[auth_token]/update/V10?value=/pin/
I have the same thing set up for the Humidity to send V1 local to V11 cloud: http://blynk-cloud/[auth_token]/update/V11?value=/pin/
My issue is the second one (V1 local to V11 cloud) does not work, the cloud side never updates the humidity value. The temperature one (V0 local to V10 cloud) works just fine. Both URL’s are identical with the exception of the pin to update.
Any thoughts as to why the first one works and second one does not?