Search found 307 matches

by Domosapiens
07 Apr 2020, 15:24
Forum: ESP Easy: Projects / Applications
Topic: Android application
Replies: 67
Views: 76226

Re: Android application

I believe Google checks this software when publishing it in Play Market. Just google "google play store trojan" Just curious, do you check the code of all apps on your phone? Most Android applications don't scan your network. "Een beetje te kort door de bocht", for the Dutch amo...
by Domosapiens
07 Apr 2020, 10:58
Forum: ESP Easy: Projects / Applications
Topic: Android application
Replies: 67
Views: 76226

Re: Android application

I have public repo - without code
So no-one can check on a Trojan Horse?
My suggestion: stay away from this software
by Domosapiens
04 Apr 2020, 00:30
Forum: ESP Easy: Hardware
Topic: Display - OLED SSD1306 - no display at all
Replies: 9
Views: 14160

Re: Display - OLED SSD1306 - no display at all

screen is also blank
Make sure u try the potentiometer full, in both directions.
The adjustable area is almost at the end.
by Domosapiens
02 Apr 2020, 20:24
Forum: ESP Easy: General Discussion
Topic: Problem with a rule for MQ-7 Gas sensor
Replies: 12
Views: 9996

Re: Problem with a rule for MQ-7 Gas sensor

[MQ7_Calibration_Start-Stop#etat]=0
the name contains the "-" minus sign.
I can imagine that ...

Try using the "_" underscore instead, in Task and in the rule ??
by Domosapiens
05 Mar 2020, 00:18
Forum: ESP Easy: General Discussion
Topic: Generic - Pulse counter and /json?tasknr=1
Replies: 3
Views: 6835

Re: Generic - Pulse counter and /json?tasknr=1

My next task will be to zero Total and Time every 24 hours.
A rule:

Code: Select all

On Clock#Time=All,00:00 do
resetpulsecounter,1
EndOn
will do a reset of the first pulsecounter task.
by Domosapiens
19 Feb 2020, 16:50
Forum: ESP Easy: Hardware
Topic: Problem - active buzzer
Replies: 3
Views: 12108

Re: Problem - active buzzer

It could be that the buzzer needs more current then the GPIO can "source" (give). (iirc 12mA) You could try: Wire 3.3.V to + from buzzer. Wire - from buzzer to GPIO12 (D6) or GPIO14 (D5) In this way the GPIO is a "sink" for the current and not the "source" Sink possibil...
by Domosapiens
14 Feb 2020, 22:40
Forum: ESP Easy: Hardware
Topic: can not get BMP280 to work
Replies: 7
Views: 14566

Re: can not get BMP280 to work

Did you try:
Tools / I2C San ?
Did it discover the module ??
At 0x76 address ??
by Domosapiens
14 Feb 2020, 16:04
Forum: ESP Easy: General Discussion
Topic: 150 days online
Replies: 34
Views: 29485

Re: 150 days online

ESP_Easy_mega-20200204_test_ESP8266_4M1M_VCC.bin shows good stability when it is in close proximity to the WiFi router. But reboots continue to occur when it is at the preferred location. ESPEasy reports RSSI is about -74dBm, which is reasonable. So I need some advice on how to configure ESPEasy's ...
by Domosapiens
13 Feb 2020, 00:21
Forum: ESP Easy: Hardware
Topic: is there a nodemcu v3 socket available
Replies: 3
Views: 10621

Re: is there a nodemcu v3 socket available

Or use this less wide bottom version V2 Nodemcu-CP2102:
Image

Bottom version 48mm* 25mm instead of the top version 57mm * 31mm
https://nl.aliexpress.com/item/32665100 ... 4c4dD77Bii
by Domosapiens
12 Feb 2020, 22:05
Forum: ESP Easy: Hardware
Topic: is there a nodemcu v3 socket available
Replies: 3
Views: 10621

Re: is there a nodemcu v3 socket available

Yes, indeed. Search Ali with "nodemcu breadboard" I use one of these: https://ae01.alicdn.com/kf/HTB1rbnaasfrK1RjSszcq6xGGFXat.jpg https://nl.aliexpress.com/item/32966490069.html?spm=a2g0o.productlist.0.0.f8c153afwmk8yE&s=p&algo_pvid=71a3a030-5479-4194-935c-5d32bae0b210&algo_ex...
by Domosapiens
08 Feb 2020, 00:39
Forum: ESP Easy: General Discussion
Topic: 150 days online
Replies: 34
Views: 29485

Re: 150 days online

Great experience here with mega-20191116 Core260 running on 13 units.
Finally able to optimize/debug my application aspects.
Thumbs up for TD-er and the team.
by Domosapiens
05 Feb 2020, 16:55
Forum: ESP Easy: Software
Topic: Control ESPEasy-thermostat -> Rules problem
Replies: 34
Views: 25386

Re: Control ESPEasy-thermostat -> Rules problem

on CheckOnOff
Must be
on CheckOnOff do
by Domosapiens
26 Jan 2020, 23:31
Forum: ESP Easy: General Discussion
Topic: Sensorupdate faster than 1 second?
Replies: 6
Views: 8543

Re: Sensorupdate faster than 1 second?

Gnassel wrote: 26 Jan 2020, 16:03 Thanks a lot.
Setting an output pin with
Longpulse_ms
Connected via wire to an input pin, and trigger an action by a change
Works for me.
Maybe there is a software solution, but I am happy for now.

Frank
Smart Frank !
by Domosapiens
26 Jan 2020, 23:30
Forum: ESP Easy: General Discussion
Topic: Problems with push button , self activation
Replies: 11
Views: 11931

Re: Problems with push button , self activation

Code: Select all

On setFanSpeed do
 pwm,12,[dim#dim] //Set speed of Fan
 let,1,1023-[dim#dim] //Calculate brightness of onboard LED
 pwm,2,%v1% //Set onboard LED
enddo
Without further comment, ...

Code: Select all

enddo 
is wrong.
Must be

Code: Select all

endon
by Domosapiens
12 Dec 2019, 00:49
Forum: ESP Easy: Software
Topic: Sonoff 2 Gan GPIO,5 at 1 when reboot
Replies: 9
Views: 9140

Re: Sonoff 2 Gan GPIO,5 at 1 when reboot

fishton wrote: 11 Dec 2019, 10:22 on System#Boot do
gpio,12,0
gpio,5,0
inputswithcstate,1,0
inputswithcstate,0,0
endon
inputswithcstate,1,0
inputswithcstate,0,0
Typo .. must be inputswitchstate
by Domosapiens
20 Oct 2019, 18:13
Forum: ESP Easy: Software
Topic: check if Sensor is active
Replies: 18
Views: 15934

Re: check if Sensor is active

Code: Select all

on [ds18b20#Temperature] do

   event,SetTemp

EndOn
Must be:

Code: Select all

on ds18b20#Temperature do

   event,SetTemp

EndOn
you are not operating on the content ( conent is with []), but on the event that ds18b20#Temperature is updated , so no [] there
by Domosapiens
20 Oct 2019, 16:59
Forum: ESP Easy: Software
Topic: check if Sensor is active
Replies: 18
Views: 15934

Re: check if Sensor is active

In this part ...no EndIf !

Code: Select all

on [ds18b20#Temperature] do

   Event,SetTemp
 EndIf
EndOn
by Domosapiens
19 Oct 2019, 23:36
Forum: ESP Easy: Software
Topic: remote send a variable
Replies: 2
Views: 7033

Re: remote send a variable

Syntax is something like:

Code: Select all

on testevent do
  TaskValueSet 5,4,%eventvalue%
endon

http://x.x.x.x/control?cmd=event,testevent=3
by Domosapiens
19 Oct 2019, 21:25
Forum: ESP Easy: Software
Topic: count up a variable
Replies: 2
Views: 8048

Re: count up a variable

You need to mention the name of your variable [DummyVar#TempSetpoint] and operate on the content, therefor the [] On System#Boot do //When the ESP boots, do //[DummyVar#TempSetpoint]=40 TaskValueSet 3,1,40 endon on ButtonLeft#state=0 do //[DummyVar#TempSetpoint]- TaskValueSet 3,1,[DummyVar#TempSetpo...
by Domosapiens
12 Oct 2019, 21:50
Forum: ESP Easy: Software
Topic: Device action depending on another device's state
Replies: 1
Views: 6232

Re: Device action depending on another device's state

Did you study the Rules? Switch the Rules on in the Tools tab. And then ... https://espeasy.readthedocs.io/en/latest/Rules/Rules.html Good practice is to fire a command Heating_On every 60 sec. On the receiving side you use a 80 sec. timer for auto Heating_Off So as long as you receive every 60 seco...
by Domosapiens
26 Sep 2019, 00:22
Forum: ESP Easy: Software
Topic: Collection Q&A post: Let variables VAR and INT
Replies: 4
Views: 8283

Re: Collection Q&A post: Let variables VAR and INT

Thanks a lot TD-er. int and var do share the same value Understood So the int version of the variable is just cast to int Understood Somewhere in my notes (written by grovkillen ?) Exporting as a string .... The percentage variable %v16% is a string while the square brackets [VAR#16] is a float valu...
by Domosapiens
24 Sep 2019, 16:45
Forum: ESP Easy: Software
Topic: Collection Q&A post: Let variables VAR and INT
Replies: 4
Views: 8283

Collection Q&A post: Let variables VAR and INT

@TD-er, @grovkillen ... others So I will also add it for references to [Var#n] types which I believe will make the rules quite a bit more powerful. It will be included in PR https://github.com/letscontrolit/ESPEasy/pull/2617 Seen this post: Rules: Clock#Time - possible to compare with a variable? ht...
by Domosapiens
16 Sep 2019, 10:06
Forum: ESP Easy: General Discussion
Topic: Save GPIO state on flash/eeprom
Replies: 4
Views: 9666

Re: Save GPIO state on flash/eeprom

What is the intended use case? For me .... to let relay's controlling pumps survive their activity despite all watchdog reboots I store GPIO states controlling a relay, in a dummy task. With a Rule: "On System#Boot do" I restore the last known GPIO state This works for a hot-boot, NOT a p...
by Domosapiens
31 Aug 2019, 22:22
Forum: ESP Easy: General Discussion
Topic: Feedback required: New sets of plugins/controllers
Replies: 20
Views: 23116

Re: Feedback required: New sets of plugins/controllers

As reported on Github, My applications are: - Multi DS18B20 / BME280 Temperature measurement - Energy calculation by DS18B20 delta Temperature measurement and Flow measurement plus PWM pump control - Thermostat setting&control by Rotary encoder, MLX90614 IR and DS18B20 Temperature measurement an...
by Domosapiens
31 Aug 2019, 12:34
Forum: ESP Easy: General Discussion
Topic: lc technology ESP8266 realy x4 Problem
Replies: 11
Views: 19986

Re: lc technology ESP8266 realy x4 Problem

Suggestion ... start here:

http://www.chinalctech.com/cpzx/Programmer/427.html
Install APP "EspTouch_Demo" android version to configure wifi account and password for ESP-01 module on the first time of mode 2
by Domosapiens
18 Aug 2019, 13:11
Forum: ESP Easy: Software
Topic: Rules (old engine) Rules Set 1/2/3/4
Replies: 4
Views: 9077

Re: Rules (old engine) Rules Set 1/2/3/4

Yes, all 4 pages are active.

B.t.w. it would be nice if there was an enable button per rule page for try&test purposes.
by Domosapiens
06 Aug 2019, 23:43
Forum: ESP Easy: Software
Topic: %c_m2dhm%(%uptime%) does nothing
Replies: 6
Views: 8584

Re: %c_m2dhm%(%uptime%) does nothing

For those who are also lost with %c_m2dhm%
See:
https://www.letscontrolit.com/wiki/inde ... asyFormula end of page.

:o :roll:
by Domosapiens
12 Jun 2019, 00:05
Forum: ESP Easy: General Discussion
Topic: Hardware Watchdog Reboots
Replies: 219
Views: 203585

Re: Hardware Watchdog Reboots

To minimize reboot measurement disturbance, I use this rule, On System#Boot do timerset,3,30 //Reboot detection wait for WiFi Endon On Rules#Timer=3 do //reboot detected SendToHTTP 192.168.1.7,8080,/json.htm?type=command&param=switchlight&idx=219&switchcmd=On SendToHTTP 192.168.1.7,8080,...
by Domosapiens
28 May 2019, 10:09
Forum: ESP Easy: General Discussion
Topic: esp8266 and water flow SEN-HZ43WB
Replies: 23
Views: 27475

Re: esp8266 and water flow SEN-HZ43WB

My use is in a heating system with a pump, so a minimal flow is guaranteed. My maximum is 25L/min. Therefor my choice for 30L/min. This is my way for drinking water: https://www.letscontrolit.com/forum/viewtopic.php?f=2&t=5955#p33231 In your case, I understand, it's for drinking water (max 15L/m...
by Domosapiens
28 May 2019, 00:47
Forum: ESP Easy: General Discussion
Topic: Maximum Uptime minute
Replies: 6
Views: 11826

Re: Maximum Uptime minute

@budman1758
Wow !!
Can you show us an overview of the tasks?
by Domosapiens
24 May 2019, 23:16
Forum: ESP Easy: General Discussion
Topic: esp8266 and water flow SEN-HZ43WB
Replies: 23
Views: 27475

Re: esp8266 and water flow SEN-HZ43WB

Up until now i have seen that this sensor is not giving reads under 1 Liter and the day counter has a difference comparing it to my water supplyer. I steel have some doubts about this value "477 pulses" has a difference .... more then the official meter ?? ... less ..? within 10% ?? In ca...
by Domosapiens
21 May 2019, 23:42
Forum: ESP Easy: General Discussion
Topic: esp8266 and water flow SEN-HZ43WB
Replies: 23
Views: 27475

Re: esp8266 and water flow SEN-HZ43WB

@mrc-core. I use comparable flow counters. https://nl.aliexpress.com/item/32788046376.html?spm=a2g0z.10010108.1000016.1.34ab795fJEWhi4&isOrigTitle=true with a slightly more convenient specification. The website specification of your source is incomplete/inconsistent: 7. The cumulative flow pulse...
by Domosapiens
15 May 2019, 20:47
Forum: ESP Easy: Software
Topic: Level control or rules ?
Replies: 16
Views: 11197

Re: Level control or rules ?

Endif missing
by Domosapiens
13 May 2019, 21:17
Forum: ESP Easy: Hardware
Topic: Solar Power Supply
Replies: 118
Views: 130879

Re: Solar Power Supply

Ton,
that protection board is lacking a booster.
Thus low voltage from the solar panel will not be used without the booster.
by Domosapiens
13 May 2019, 00:17
Forum: ESP Easy: Hardware
Topic: Solar Power Supply
Replies: 118
Views: 130879

Re: Solar Power Supply

A few streets away .... at Ikea .... 2Amp USB charger.

Just to make sure ..
You need to feed the battery shield USB plug .... not the Wemos plug
LED is red, but the charging voltage for the battery is (a too low) 0.45V.
Sounds like a dead board, ... a dead battery, ...polarity reversal .....
by Domosapiens
12 May 2019, 21:01
Forum: ESP Easy: Hardware
Topic: Solar Power Supply
Replies: 118
Views: 130879

Re: Solar Power Supply

Ton, In my case: the BatteryShield is charging the battery, parallel to the WEMOS When I charge the battery through the shield, the Wemos starts (see also schematics) Battery full? green LED. Charging ... red LED Situation 1: Wemos On, running on battery (4.17V), plug-in USB on shield, Red light goe...
by Domosapiens
12 May 2019, 01:06
Forum: ESP Easy: Software
Topic: Resets the variable every day.
Replies: 27
Views: 20647

Re: Resets the variable every day.

My suggestion,
at 00.01
read the value
and
subtract that value
by Domosapiens
10 May 2019, 23:21
Forum: ESP Easy: Hardware
Topic: Solar Power Supply
Replies: 118
Views: 130879

Re: Solar Power Supply

Ton_vN wrote: 09 May 2019, 13:49 Related experiences with this shield?
Yep, ...my experience
charging the battery via USB does not work when the Wemos is not switched on.
by Domosapiens
18 Apr 2019, 21:55
Forum: ESP Easy: Software
Topic: lcd 2004 Display - LCD2004 backlight off
Replies: 2
Views: 3461

Re: lcd 2004 Display - LCD2004 backlight off

Only with rules

Code: Select all

On System#Boot do
LCDCMD,off
Endon
by Domosapiens
16 Apr 2019, 22:44
Forum: ESP Easy: Hardware
Topic: Reboot cause: WEMOS D1 (clone) voltage regulator ??
Replies: 10
Views: 19157

Re: Reboot cause: WEMOS D1 (clone) voltage regulator ??

Sorry to say ...but ...
I disconnected the 5V connection and used a 3.3V regulator LM1117T-3.3 with 800mA specification. Thus by-passing the on-board regulator.
is not THE solution.
Further testing goes on ..
by Domosapiens
15 Apr 2019, 22:31
Forum: ESP Easy: General Discussion
Topic: IR RX extended decoding of AC Protocols
Replies: 6
Views: 6892

Re: IR RX extended decoding of AC Protocols

Use a version like ESP_Easy_mega-20190406_normal_IR_ESP8266_4M.bin
(with IR in the name)
Here are 2 IR project pages
https://www.letscontrolit.com/wiki/inde ... erProjects
by Domosapiens
14 Apr 2019, 23:08
Forum: ESP Easy: General Discussion
Topic: UDP Controller only sending first value
Replies: 12
Views: 8919

Re: UDP Controller only sending first value

Correct, that's the port setting.
Additional choose under the tab Controllers the ESPEasy P2P Networking.

It's somewhat legacy that activation and port setting are on different places.
by Domosapiens
08 Apr 2019, 21:43
Forum: ESP Easy: Software
Topic: Change PWM Frequency ?
Replies: 38
Views: 50717

Re: Change PWM Frequency ?

Did you see?

Code: Select all

PWM,<GPIO>,<duty>,<duration>,<frequency>
https://espeasy.readthedocs.io/en/lates ... hlight=pwm