Search found 12 matches

by Jedrunia
13 Jan 2024, 14:36
Forum: ESP Easy: Hardware
Topic: Problem with ultrasonic Sensor JSN-SR04T
Replies: 8
Views: 30215

Re: Problem with ultrasonic Sensor JSN-SR04T

bastler11 wrote: 09 Jan 2024, 12:26 Hello Andrzej,

good idea! How did you connect the JSN-SR04T to the ESP? Did you use any converter for the Signal for 5V to 3,3V?

Thanks and best Regards!
Hi,

Whole "system" powered from one 3.2V 26650 LiFePO4 akku.

Andrzej
by Jedrunia
27 Nov 2022, 19:43
Forum: ESP Easy: Hardware
Topic: ky-024 hallsensor is too weak
Replies: 3
Views: 1341

Re: ky-024 hallsensor is too weak

Hi

Try electronic compas on hmc5883l chip like GY-273 board.
by Jedrunia
02 Aug 2022, 14:09
Forum: ESP Easy: Hardware
Topic: Problem with ultrasonic Sensor JSN-SR04T
Replies: 8
Views: 30215

Re: Problem with ultrasonic Sensor JSN-SR04T

Hi,

Try this simple solution ;)

Andrzej
by Jedrunia
20 Feb 2020, 21:13
Forum: ESP Easy: Hardware
Topic: Designing automatic watering system
Replies: 16
Views: 21253

Re: Designing automatic watering system

There is no problem to power DS from 5V and connect data line directly to ESP GPIO port with pullup resistor to ESP power line (3.3V).
by Jedrunia
06 Nov 2019, 16:06
Forum: ESP Easy: Software
Topic: Enable/Disable task by commands
Replies: 2
Views: 5371

Re: Enable/Disable task by commands

In the first solution, every task is run once - on boot or wake up from deep sleep.
Second solution (if it will be new feature, not a bug) is what I'm looking for. Task is active, and not run by itself.

Thanks
Andrzej
by Jedrunia
05 Nov 2019, 12:05
Forum: ESP Easy: Software
Topic: Enable/Disable task by commands
Replies: 2
Views: 5371

Enable/Disable task by commands

Hello,

Can I enable/disable task using commands sent by RS or WiFi or from rules?
Or
Can I have task enabled but not running/not updated? (even on wakeup/reset)

Regards
Andrzej
by Jedrunia
25 Oct 2019, 14:36
Forum: ESP Easy: General Discussion
Topic: Weird interpretation of the &-Symbols in Rules / SendToHTTP not working
Replies: 35
Views: 26173

Re: Weird interpretation of the &-Symbols in Rules / SendToHTTP not working

Please check controler settings:
Minimum interval 15min
Check answer true
by Jedrunia
06 Aug 2019, 15:10
Forum: ESP Easy: Software
Topic: [SOLVED] - Force controller update for dummy value
Replies: 3
Views: 5482

Re: [SOLVED] - Force controller update for dummy value

Or for the last updated value in dummy device you can use:
TaskValueSetAndRun command
by Jedrunia
17 Apr 2019, 23:00
Forum: ESP Easy: Projects / Applications
Topic: Seria Server - Ser2Net wiki?
Replies: 13
Views: 11986

Re: Seria Server - Ser2Net wiki?

Working solution:
In ESP just define Dummy Device - no serial server needed at all.

From Arduino send via RS:
"TaskValueSet,12,1,8"

in LOG you will se
Commannd: taskvalueset

and value number 1 in dummy device in task 12 is set to 8
by Jedrunia
15 Apr 2019, 12:41
Forum: ESP Easy: Projects / Applications
Topic: Seria Server - Ser2Net wiki?
Replies: 13
Views: 11986

Re: Seria Server - Ser2Net wiki?

Or instead test_1 put D1 as a name you use in Dummy Device
by Jedrunia
15 Apr 2019, 12:30
Forum: ESP Easy: Projects / Applications
Topic: Seria Server - Ser2Net wiki?
Replies: 13
Views: 11986

Re: Seria Server - Ser2Net wiki?

If I understand properly, you need to create an event using Arduino. so you need to send: "test_1=123" In LOG window you can see: EVENT: !Serial#test_1=123 test_1 is a name of temoprary variable Now in RULES you should react on that event: on !Serial do TaskValueSet , 2,1,[test_1] endon or...
by Jedrunia
07 Apr 2019, 23:42
Forum: ESP Easy: Software
Topic: dummy Octal
Replies: 5
Views: 3623

Re: dummy Octal

Hello, As a workaround, I suggest using rules: on <trigger> do SendToHTTP api.thingspeak.com,80,/update?api_key=xxxx&field1=%rssi%&field2=2&field3=[BMP#Temperature]&field4=[BMP#Pressure]&field5=[Akku#Analog] endon where the <trigger> is the last event in one data collecting cycle...