Search found 9 matches

by poe
12 Jul 2017, 14:50
Forum: ESP Easy: General Discussion
Topic: Feature request: MMA7660
Replies: 0
Views: 1388

Feature request: MMA7660

Anyone got the wits to create a device plugin for the MMA7660 triaxial accelerometer?

/Preben
by poe
19 Jun 2017, 13:29
Forum: ESP Easy: Software
Topic: HX711
Replies: 5
Views: 6040

Re: HX711

I would also like to be able to use HX711 if someone has the talent to add it.
by poe
09 Jun 2017, 19:26
Forum: ESP Easy: Software
Topic: dev10 LCD2004 Issues?
Replies: 2
Views: 2683

dev10 LCD2004 Issues?

When I save a change to the Display button, the field goes blank. Subsequently pressing the button has no effect. I can turn LCD on/off using html commands.
I also miss the Delay field, so that the refresh rate can be controlled.
by poe
23 Aug 2016, 15:25
Forum: ESP Easy: General Discussion
Topic: Feature Request collection/list
Replies: 197
Views: 191169

Re: Feature Request collection/list

A PID Device. Device needs 6 parameters P, I, D, setpoint, Device(actual value) and GPIO for output. A checkbox to determine if it is for heating or cooling would also be nice. I am aware of the limited power of the processor, but for many purposes a cycle time of 5-10 seconds would be sufficient. I...
by poe
15 Aug 2016, 18:34
Forum: ESP Easy: Software
Topic: Setting value on dummy device
Replies: 1
Views: 2456

Re: Setting value on dummy device

I have circumvented the problem by creating Increase and Decrease events to modify the setpoint. But I would like to get a reply like when you use the gpio command.
Is this possible, and if yes how?
I havent been able to find code examples that can do it.

/Preben
by poe
13 Aug 2016, 13:01
Forum: ESP Easy: Software
Topic: Introducing the Dummy Device on ESP Easy (Github R118!)
Replies: 29
Views: 48136

Re: Introducing the Dummy Device on ESP Easy (Github R118!)

In rules "taskvalueset 4,1,1" works just fine, but "http://#.#.#.#/control?cmd=taskvalueset 4,1,1" gives me a "Unknown or restricted command!". I thought that every command from rules can be used with "control?cmd=" Am i doing it wrong, is it not possible or i...
by poe
13 Aug 2016, 11:59
Forum: ESP Easy: Software
Topic: Setting value on dummy device
Replies: 1
Views: 2456

Setting value on dummy device

I want to use control?cmd to set a value on the dummy device. In rules "taskvalueset 4,1,1" works just fine, but "http://#.#.#.#/control?cmd=taskvalueset 4,1,1" gives me a "Unknown or restricted command!". I thought that every command from rules can be used with "c...
by poe
11 Aug 2016, 21:16
Forum: ESP Easy: Software
Topic: Rules on R120
Replies: 2
Views: 2460

Re: Rules on R120

Figured it out.

Timer=1 was never started.

on System#Boot do
gpio,13,1
timerSet,1,10
endon

on Rules#Timer=1 do
if [Temp#Temp1] > 24
gpio,13,0
else
gpio,13,1
endif
timerSet,1,10
endon
by poe
11 Aug 2016, 20:57
Forum: ESP Easy: Software
Topic: Rules on R120
Replies: 2
Views: 2460

Rules on R120

What is it I cannot see? I have the following rule on R120: on System#Boot do gpio,13,1 endon on Rules#Timer=1 do if [Temp#Temp1] > 24 gpio,13,0 else gpio,13,1 endif timerSet,1,10 endon GPIO13 goes high at boot, but doesnt go low when Temp1 rises above 24. [Temp#Temp1] is shown on my LCD. So that sy...