Search found 5 matches

by Rebels
Friday 22 July 2016 20:42
Forum: dzVents
Topic: dzVents 1.1.1
Replies: 62
Views: 15851

Re: dzVents 1.1.1

I think you've ran into a common problem with the esp8266. I noticed the same issue with some of my own ESP8266 devices. They tend to hang after a few days of operation. Just Google on ESP8266 hangs and you will find that you are not the only one. For Some situations solutions are provided on the ...
by Rebels
Thursday 12 March 2015 8:37
Forum: Other questions and discussions
Topic: Interesting ESP8266 WiFi Module
Replies: 105
Views: 52100

Re: Interesting ESP8266 WiFi Module

A simpel Google Search resulted in this link http://www.esp8266.com/viewtopic.php?f=19&t=1896
So it looks like it is supported whitin NodeMCU. Just connect it, load the library and replace the Json lines with the right ones for the barometric device and you should be fine.
by Rebels
Saturday 28 February 2015 18:03
Forum: Other questions and discussions
Topic: Interesting ESP8266 WiFi Module
Replies: 105
Views: 52100

Re: Interesting ESP8266 WiFi Module

So now it it time to put those mini sensors everywhere ;-) But first write a wiki on how to build and program these sensors so we can all put it everywhere :D Done! :D There now is a Wiki page "ESP8266 WiFi module" under "Protocols, sensors and integration". I've documented everything I've done and ...
by Rebels
Wednesday 25 February 2015 19:40
Forum: Other questions and discussions
Topic: Interesting ESP8266 WiFi Module
Replies: 105
Views: 52100

Re: Interesting ESP8266 WiFi Module

I've fixed it! As it turns out I made a few mistakes in the script thats sends the data to domoticz. The working script is below. require('ds18b20') -- ESP-01 GPIO Mapping gpio0 =3 gpio2 =4 ds18b20.setup(gpio2) t=ds18b20.read() print("Temp:" .. ds18b20.read() .. " C\n") if(t==nil) then t=0 end tmr ...
by Rebels
Tuesday 24 February 2015 20:33
Forum: Other questions and discussions
Topic: Interesting ESP8266 WiFi Module
Replies: 105
Views: 52100

Re: Interesting ESP8266 WiFi Module

I've been at this for a while now, but still without any success. I'm trying to get a temperature reading from a DS18B20 1wire sensor that is connected directly to an ESP8266 module wich has nodeMCU installed. The principle works. Ik can get it to connect to my wifi network, and with a simple ...