Search found 24 matches

by leachimtrebron
11 Mar 2023, 14:43
Forum: ESP Easy: Software
Topic: need 8 serial interfaces for my project
Replies: 9
Views: 1650

Re: need 8 serial interfaces for my project

Thanks for the feedback
It is about the reading of 8 electricity meters. These send with 9600 baud 7 bit/Even/Stop1.
The data comes all second. as Ocean Biogeographic Information System (OBIS).
Could https://github.com/plerup/espsoftwareserial be implemented?
by leachimtrebron
26 Feb 2023, 10:24
Forum: ESP Easy: Software
Topic: need 8 serial interfaces for my project
Replies: 9
Views: 1650

Re: need 8 serial interfaces for my project

Thanks for your info. The extension is much more expensive than if I invest in an additional ESp32 and then marry it via a P2P network. P2P network to marry it. In terms of power, however, I would then need to use a different power supply. It would be nicer if software RS232 could be implemented. I ...
by leachimtrebron
24 Feb 2023, 17:24
Forum: ESP Easy: Software
Topic: need 8 serial interfaces for my project
Replies: 9
Views: 1650

need 8 serial interfaces for my project

I need your help, Requirement for my project to read all meters in the house for integration into ioBroker - read out 8 eBZ meters - Transfer info via serial bridge - 25 temperature sensors DS18B20 via MQTT - 7 counters that read the water meters and transmit status changes via MQTT Except for 5 sof...
by leachimtrebron
29 Jul 2022, 01:59
Forum: ESP Easy: Software
Topic: with KY-040 rotary encoder. show values on LCD display
Replies: 1
Views: 2388

with KY-040 rotary encoder. show values on LCD display

Hardware of my project: ----------------------------- 1 * ESP32 15 * temperature sensors DS18B20 2 * analog voltage values 4 * static values: IP address, MAC, SSID, RF level. 1 * LCD display 2 lines 16 characters 1 * Rotary Encoder The individual values are to be displayed by turning the KY-040. Doe...
by leachimtrebron
29 Jul 2022, 01:40
Forum: ESP Easy: Software
Topic: 5 x SoftwareSerial for ESPEasy mega = ?
Replies: 4
Views: 2788

Re: 5 x SoftwareSerial for ESPEasy mega = ?

Hello Thomas, that is a good idea. Will have to look into the P2P network. I have never done that before. I still have an ESP32 that I could use for this as a test. Do you have a sample application or info link on how I need to configure master and slave. How does that look then with the power consu...
by leachimtrebron
28 Jul 2022, 19:08
Forum: ESP Easy: Software
Topic: 5 x SoftwareSerial for ESPEasy mega = ?
Replies: 4
Views: 2788

Re: 5 x SoftwareSerial for ESPEasy mega = ?

Thanks for the quick reply. the SC16IS752 is a good hint. will order and try this times
by leachimtrebron
28 Jul 2022, 17:31
Forum: ESP Easy: Software
Topic: 5 x SoftwareSerial for ESPEasy mega = ?
Replies: 4
Views: 2788

5 x SoftwareSerial for ESPEasy mega = ?

Hello all, I need your help, I need 8 x RS232 interfaces with 9600 baud to read smartmeters. The ESPeasy supports 3 hardware RS232 versions and can pass them on the Ethernet. Exactly what I need for 8 x RS232 interfaces. With my search I stumbled over this project: https://github.com/StefanRu1/Softw...
by leachimtrebron
26 Dec 2019, 18:16
Forum: ESP Easy: Software
Topic: Turn on a GPIO every minute for 5 seconds. what am I doing wrong
Replies: 13
Views: 10229

Re: Turn on a GPIO every minute for 5 seconds. what am I doing wrong

Thanks for the hint. what does it look like if you want to trigger an event every 3 or every 8 minutes Could you put some examples in the wiki? This could also help other users. THANKS for your help Clock # Time = All, **: ** ==> every minute All, **: ** ==> 1 1,11,21,31,41,51 minute All, **: * 5 ==...
by leachimtrebron
26 Dec 2019, 17:55
Forum: ESP Easy: Software
Topic: wie kann ich 3 Unterschiedliche MQTT Server unter rulseinzeln ansprechen
Replies: 5
Views: 5720

Re: wie kann ich 3 Unterschiedliche MQTT Server unter rulseinzeln ansprechen

maybe in one of the upcoming versions then I have to come up with something else
by leachimtrebron
26 Dec 2019, 15:03
Forum: ESP Easy: Software
Topic: Turn on a GPIO every minute for 5 seconds. what am I doing wrong
Replies: 13
Views: 10229

Re: Turn on a GPIO every minute for 5 seconds. what am I doing wrong

@grovkillen
Thanks

Wie ist die Syntax mit dem ich jede Minute einen Event auslösen kann?
by leachimtrebron
26 Dec 2019, 14:20
Forum: ESP Easy: Software
Topic: wie kann ich 3 Unterschiedliche MQTT Server unter rulseinzeln ansprechen
Replies: 5
Views: 5720

Re: wie kann ich 3 Unterschiedliche MQTT Server unter rulseinzeln ansprechen

Good Morning and goog Morning grovkillen Here is a more detailed answer to your question why: 3 MQTT servers have to be addressed because each MQTT server has its special tasks and access. They are also in different networks. Private networks (VPN) as well as on the Internet and on the intranet. Ser...
by leachimtrebron
25 Dec 2019, 18:38
Forum: ESP Easy: Software
Topic: wie kann ich 3 Unterschiedliche MQTT Server unter rulseinzeln ansprechen
Replies: 5
Views: 5720

wie kann ich 3 Unterschiedliche MQTT Server unter rulseinzeln ansprechen

how do I specify in Ruls on which MQTT server I want to send my information I have given 3 different ones under controller

Server 1: I want to set up GPIO states
Server 2: weather data only
Server 3: error messages only




how can I address the MQTT server 1 to 3 individually under Ruls
by leachimtrebron
25 Dec 2019, 18:14
Forum: ESP Easy: Software
Topic: Turn on a GPIO every minute for 5 seconds. what am I doing wrong
Replies: 13
Views: 10229

Re: Turn on a GPIO every minute for 5 seconds. what am I doing wrong

sorry its gpio14

Code: Select all

on Clock#Time=All,**:*1 do
Event,startgpio14
endon
doesn't seem to work for me
by leachimtrebron
25 Dec 2019, 18:12
Forum: ESP Easy: Software
Topic: Ruls do not show the state of GPIOs under divices
Replies: 10
Views: 7522

Re: Ruls do not show the state of GPIOs under divices

@grovkillen I have now found a pragmatic solution. it is not elegant but seems to work On StartGpio12 do LongPulse,12,1,5 //gpio12 ==> 5 Sec =on Endon On startgpio13 do LongPulse,13,1,5 //gpio13 ==> 5 Sec = on endon On StartGpio14 do taskRun,4 // The GPIO is defined in task-ID: #4 LongPulse,14,1,5 /...
by leachimtrebron
25 Dec 2019, 15:07
Forum: ESP Easy: Software
Topic: Turn on a GPIO every minute for 5 seconds. what am I doing wrong
Replies: 13
Views: 10229

Re: Turn on a GPIO every minute for 5 seconds. what am I doing wrong

@grovkillen :


I have taken the source code into my Ruls
On startgpio14 do
LongPulse,14,1,5
endon

on Clock#Time=All,**:*1 do
Event,startgpio14
endon

and rebooted esp No response on GPIO13
I use the image:
ESP_Easy_mega-20191208_normal_ESP8266_4M1M.bin
by leachimtrebron
25 Dec 2019, 14:39
Forum: ESP Easy: Software
Topic: Ruls do not show the state of GPIOs under divices
Replies: 10
Views: 7522

Re: Ruls do not show the state of GPIOs under divices

@Thomas: Thanks for your quick reply. unfortunately that still doesn't solve my problem. Signaling via MQTT does not work the current stage from the GPIO is not transmitted, it always remains at 0 even though it is 1 Via the URL in the browser http://192.168.178.161/control?cmd=GPIO,14,1, GPIO is al...
by leachimtrebron
24 Dec 2019, 13:11
Forum: ESP Easy: Software
Topic: Ruls do not show the state of GPIOs under divices
Replies: 10
Views: 7522

Re: Ruls do not show the state of GPIOs under divices

@ grovkillen: Your suggestion doesn't seem right State is displayed: http://192.168.178.161/control?cmd=GPIO,14,1 State is not displayed : http://192.168.178.161/control?cmd=event,start-gpio14 I would like if BMx280 # Humidity> 55, the GPIO14 goes to 1 and this status is also sent via MQTT. I cannot...
by leachimtrebron
24 Dec 2019, 12:32
Forum: ESP Easy: Software
Topic: Turn on a GPIO every minute for 5 seconds. what am I doing wrong
Replies: 13
Views: 10229

Re: Turn on a GPIO every minute for 5 seconds. what am I doing wrong

@homejcl: Thank you very much, could you please show me an example of what such an event should look like?
by leachimtrebron
24 Dec 2019, 12:27
Forum: ESP Easy: Software
Topic: Turn on a GPIO every minute for 5 seconds. what am I doing wrong
Replies: 13
Views: 10229

Re: Turn on a GPIO every minute for 5 seconds. what am I doing wrong

yes they are declared otherwise the http version would not work
by leachimtrebron
23 Dec 2019, 23:59
Forum: ESP Easy: Software
Topic: Ruls do not show the state of GPIOs under divices
Replies: 10
Views: 7522

Re: Ruls do not show the state of GPIOs under divices

Thank you
could you please show me an example of how I can create an event in rules
by leachimtrebron
23 Dec 2019, 17:21
Forum: ESP Easy: Software
Topic: Turn on a GPIO every minute for 5 seconds. what am I doing wrong
Replies: 13
Views: 10229

Turn on a GPIO every minute for 5 seconds. what am I doing wrong

Hello everybody, Task: Turn on a GPIO every minute for 5 seconds. Is installed: ESP_Easy_mega-20191208_normal_ESP8266_4M1M.bin Built ruls: On start-gpio14 do     Long Pulse, 14,1,5 endon on Clock#Time = All,**:1 do        start-gpio14 endon [/i] Problem: The GPIO is not switched Can you give me a ti...
by leachimtrebron
23 Dec 2019, 17:07
Forum: ESP Easy: Software
Topic: Ruls do not show the state of GPIOs under divices
Replies: 10
Views: 7522

Ruls do not show the state of GPIOs under divices

Hello everybody, I encountered a problem with the Ruls and I hope you can help me further Task: If the air humidity is over 55%, a relay on the GPIO12 should be switched on for 5 seconds If the air humidity is below 50%, an LED on the GPIO14 should be switched on for 5 seconds Both state (GPIO12 and...
by leachimtrebron
27 Feb 2019, 19:14
Forum: ESP Easy: General Discussion
Topic: Token from Blynk where to enter = ???
Replies: 3
Views: 4436

Token from Blynk where to enter = ???

Hello

ask for help Where do I enter the Blynk token so I can connect to the blynk server?

leachimtrebron
by leachimtrebron
12 Mar 2018, 20:48
Forum: ESP Easy: Projects / Applications
Topic: toggle toggle button status with javascript via json ??
Replies: 0
Views: 2129

toggle toggle button status with javascript via json ??

Hello forum community, Sorry my bad english but I'll try my problem to describe somehow I can not get on and need your help. I've fished ESP easy GIT version mega-20180302 on my ESP and on Attached GPIO 12-15 relays. The switch over http works in principle: e.g. http://192.168.178.152/control?cmd=gp...