Search found 10 matches

by battika
11 Nov 2016, 21:51
Forum: ESP Easy: Hardware
Topic: New ESP gadget
Replies: 326
Views: 654857

Re: New ESP gadget

I managed to get ahold of one of the POW devices :D Can't wait to test it soon
by battika
01 Nov 2016, 18:16
Forum: ESP Easy: Projects / Applications
Topic: Projet of PH Sensor for swimming pool
Replies: 18
Views: 23556

Re: Projet of PH Sensor for swimming pool

I bought the PH sensor module and probe in post 2 last summer, managed to find some info regarding calibration so bought three different buffer liquid and calibrated it at 25 Celsius. Then built a super basic system that posts PH value every 15 minutes at Thingspeak and placed it next to the pool. T...
by battika
30 May 2016, 23:02
Forum: ESP Easy: Hardware
Topic: Beta support for MS5611 (GY63) and possibly MS5607 - looking for testers
Replies: 1
Views: 2732

Re: Beta support for MS5611 (GY63) and possibly MS5607 - looking for testers

Configuration
ms5611-device.png
ms5611-device.png (28.12 KiB) Viewed 2725 times
Devices screen
ms5611-config.png
ms5611-config.png (28.3 KiB) Viewed 2725 times
by battika
30 May 2016, 22:44
Forum: ESP Easy: Hardware
Topic: Beta support for MS5611 (GY63) and possibly MS5607 - looking for testers
Replies: 1
Views: 2732

Beta support for MS5611 (GY63) and possibly MS5607 - looking for testers

Hello, I've just forked the official espeasy code to add MS5611 support. This chip a high resolution barometric/temperature sensor costs around 5-9 USD depending on where you are. I'm wondering if someone is interested in testing it using MS5611 or more importantly MS5607 as I suspect it should work...
by battika
26 May 2016, 21:54
Forum: ESP Easy: Software
Topic: Measure VCC
Replies: 66
Views: 88835

Re: Measure VCC

@JR01 I'm not sure about the overhead but I don't think it's huge. Obviously, no measurements take place in deep sleep as the chip is practically powered down. When it wakes up after the reset pin receives the signal VCC will be measured and %vcc% variable initialized in the setup loop. It works fin...
by battika
26 May 2016, 21:19
Forum: ESP Easy: Software
Topic: Measure VCC
Replies: 66
Views: 88835

Re: Measure VCC

Thanks for testing. You are correct, default VCC value is -1 meaning VCC cannot be read.
by battika
24 May 2016, 11:31
Forum: ESP Easy: Software
Topic: Measure VCC
Replies: 66
Views: 88835

Re: Measure VCC

Just checked and it works on ESP01 as well. As the analog pin is not exposed there is even less risk of getting something wrong.
by battika
24 May 2016, 01:05
Forum: ESP Easy: Software
Topic: Measure VCC
Replies: 66
Views: 88835

Re: Measure VCC

Q1) I understand TOUT = ADC, thus no other connections to ADC. Correct, when measuring internal VCC, the analog pin cannot be used - this is a chip limitation Q2) So I assume this will work, without any other wiring required? Correct, as long as you have FEATURE_ADC_VCC set to true and the analog pi...
by battika
17 May 2016, 23:49
Forum: ESP Easy: Software
Topic: Measure VCC
Replies: 66
Views: 88835

Re: Measure VCC

It's been working fine for me for the last two days, logging VCC to Thingspeak every 15 minutes with deep sleep enabled.
by battika
15 May 2016, 14:24
Forum: ESP Easy: Software
Topic: Measure VCC
Replies: 66
Views: 88835

Re: Measure VCC

Hello, I needed the same functionality as I'm experimenting with a solar-powered solution so I made the changes you guys discussed and opened a pull request on Github. Added FEATURE_ADC_VCC to compile option with default of false Added new %vcc% parameter, collected twice a minute Added Internal VCC...