Search found 10 matches

by simeonof
18 Mar 2017, 11:32
Forum: ESP Easy: General Discussion
Topic: Battery status / level
Replies: 6
Views: 35533

Re: Battery status / level

Hi everyone! D1mini already have voltage divider 220KOhm/100KOhm on ADC pin. I'm using 3.3MOhm and 1MOhm for my battery powered sensors. so this voltage divider consumes under 1 micro amp. esp8266 have very large input impedance (over 12MOhm), To have an idea about battery percentage left and RSSI, ...
by simeonof
05 Mar 2016, 18:55
Forum: ESP Easy: Software
Topic: Status of relay switch not maintained after ESP Restart
Replies: 16
Views: 13878

Re: Status of relay switch not maintained after ESP Restart

In _P001_Switch.ino: case PLUGIN_WRITE: { String tmpString = string; int argIndex = tmpString.indexOf(','); if (argIndex) tmpString = tmpString.substring(0, argIndex); if (tmpString.equalsIgnoreCase(F("GPIO"))) { success = true; if (event->Par1 >= 0 && event->Par1 <= 16) { pinMode(...
by simeonof
04 Mar 2016, 23:13
Forum: ESP Easy: Software
Topic: Status of relay switch not maintained after ESP Restart
Replies: 16
Views: 13878

Re: Status of relay switch not maintained after ESP Restart

Hi again, I found a workaround about this problem ... The only thing is to add these two lines: Settings.PinStates[event->Par1] = event->Par2 + 1; SaveSettings(); after 201 line in _P001_Switch So when you change an state of GPIO via Domoticz with command: http://YOUR_ESP_ADDRESS/control?cmd=gpio,12...
by simeonof
29 Feb 2016, 11:27
Forum: ESP Easy: Hardware
Topic: Any suggestions for WD I2C Address ?
Replies: 0
Views: 3005

Any suggestions for WD I2C Address ?

Hi, esp easy looks very stable, BUT how to use "WD I2C Address" ?
There is a WD version with an 555 timer externally connected to a GPIO pin and reset pin.
There is a version with Attiny85 but I didn't find any usefull information how to setup this.
Any links/ suggestions are welcome.
by simeonof
13 Feb 2016, 22:27
Forum: ESP Easy: Software
Topic: [Solved] Multiple i2c devices ...
Replies: 12
Views: 13323

Re: [Solved] Multiple i2c devices ...

Yes, it was helpfull informatinon.
But evry day I'm working with ESPEasy it pops up another problem.
Anyway I've see how many work you've done boys. Thank You again and keep the good work!
by simeonof
04 Feb 2016, 16:44
Forum: ESP Easy: Software
Topic: [Solved] Multiple i2c devices ...
Replies: 12
Views: 13323

[Solved] Multiple i2c devices ...

Hi, I wonder how to address multiple devices on I2C bus :?:
For dallas ds18b20, there is an option under tasks - "Device Nr", but there is nothing for other I2C devices (INA219 or ADS1115).
Maybe it is not implemented yet ?
by simeonof
28 Jan 2016, 14:34
Forum: ESP Easy: Software
Topic: Post to Thingspeak only first task
Replies: 3
Views: 3344

Post to Thingspeak only first task

Hi, I'm trying to post two or more temperatures from dallas DS18b20 sensors (connected via GPIO2) to a Thingspeak channel, but only the first task is reported to Thinkspeak. Also I had try same thing with ADC1115 sensor, but only first channel (channel 0) is reported. I'm using different tasks for e...
by simeonof
23 Jan 2016, 13:33
Forum: ESP Easy: Hardware
Topic: ADS1115 - purpose?
Replies: 5
Views: 6733

Re: ADS1115 - purpose?

ADS1115 is verry usefull and stable ADC converter, I'm using it for monitoring a small solar panel output. On port 0 - Voltage on port 1 - current via ADS712-5A and a lot of calculations :-) The problem is that there is a bug - ESP Easy reports only first port value (port 0) to thingspeak. The other...
by simeonof
20 Jan 2016, 07:05
Forum: ESP Easy: Software
Topic: Status of relay switch not maintained after ESP Restart
Replies: 16
Views: 13878

Re: Status of relay switch not maintained after ESP Restart

First of all: Thank YOU for this aweosome piece of software!
Second: Save specific pin/s state/s to EEPROM at runtime is the missing link in my project....