Search found 4 matches
- 28 Dec 2015, 09:38
- Forum: ESP Easy: Software
- Topic: Send GPIO state on every bootup
- Replies: 2
- Views: 3024
Send GPIO state on every bootup
Hello! I have a setup with a universal node which measures temp/hum, luminosity and presence by a PIR-sensor. My goal is a battery powered node, so I put the esp into deepsleep and wake it every 15min für temp updates etc. The PIR-sensors is connected through a monostable multivibrator to the resetp...
- 22 Dec 2015, 14:06
- Forum: ESP Easy: Software
- Topic: Publish switch states to ThingSpeak
- Replies: 3
- Views: 2956
Re: Publish switch states to ThingSpeak
That's a nice trick, thanks!

Great!I'll add it in R56.

- 22 Dec 2015, 13:49
- Forum: ESP Easy: Software
- Topic: Publish switch states to ThingSpeak
- Replies: 3
- Views: 2956
Re: Publish switch states to ThingSpeak
After some code diving, I found the solution myself. It wasn't implemented yet for the SENSOR_TYPE_SWITCH! So i copied the code from SENSOR_TYPE_SINGLE, and it works like a charm :) in _C004: switch (event->sensorType) { case SENSOR_TYPE_SINGLE: // single value sensor, used for Dallas, BH1750, etc p...
- 22 Dec 2015, 13:04
- Forum: ESP Easy: Software
- Topic: Publish switch states to ThingSpeak
- Replies: 3
- Views: 2956
Publish switch states to ThingSpeak
Hello everyone! Awesome project! I really like it and try to set up some nodes. It works quite well. I upload my sensor data to thingspeak for further processing. Temperature and humidity data from DHT sensors are working neatly. But when I try to publish the data of a switch input it doesn't seem t...