Anyone got the wits to create a device plugin for the MMA7660 triaxial accelerometer?
/Preben
Search found 9 matches
- 12 Jul 2017, 14:50
- Forum: ESP Easy: General Discussion
- Topic: Feature request: MMA7660
- Replies: 0
- Views: 1510
- 19 Jun 2017, 13:29
- Forum: ESP Easy: Software
- Topic: HX711
- Replies: 5
- Views: 6618
Re: HX711
I would also like to be able to use HX711 if someone has the talent to add it.
- 09 Jun 2017, 19:26
- Forum: ESP Easy: Software
- Topic: dev10 LCD2004 Issues?
- Replies: 2
- Views: 2995
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.
I also miss the Delay field, so that the refresh rate can be controlled.
- 23 Aug 2016, 15:25
- Forum: ESP Easy: General Discussion
- Topic: Feature Request collection/list
- Replies: 197
- Views: 231116
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...
- 15 Aug 2016, 18:34
- Forum: ESP Easy: Software
- Topic: Setting value on dummy device
- Replies: 1
- Views: 2611
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
Is this possible, and if yes how?
I havent been able to find code examples that can do it.
/Preben
- 13 Aug 2016, 13:01
- Forum: ESP Easy: Software
- Topic: Introducing the Dummy Device on ESP Easy (Github R118!)
- Replies: 29
- Views: 52676
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...
- 13 Aug 2016, 11:59
- Forum: ESP Easy: Software
- Topic: Setting value on dummy device
- Replies: 1
- Views: 2611
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...
- 11 Aug 2016, 21:16
- Forum: ESP Easy: Software
- Topic: Rules on R120
- Replies: 2
- Views: 2633
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
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
- 11 Aug 2016, 20:57
- Forum: ESP Easy: Software
- Topic: Rules on R120
- Replies: 2
- Views: 2633
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...