Search found 14 matches

by anarro
27 Jul 2019, 13:23
Forum: ESP Easy: Software
Topic: longpress action without first have the shortpress action
Replies: 10
Views: 7792

Re: longpress action without first have the shortpress action

Hi, this is my final solution: on sw1#state do if [sw1#state]=3 //double click triggered! publish /HA/esp_papa/sw1/state,1 timerSet,1,0 elseif [sw1#state]=10 //Longclick triggered! publish /HA/esp_mama/sw1/state,1 timerSet,1,0 else //click triggered! timerSet,1,1 endif endon on rules#timer=1 do publ...
by anarro
27 Sep 2017, 23:48
Forum: Introduce yourself
Topic: hello from spain
Replies: 5
Views: 8377

Re: hello from spain

Spain here too... ;)
by anarro
18 Dec 2016, 12:41
Forum: Experimental
Topic: ESP Easy Mega
Replies: 249
Views: 634655

Re: ESP Easy Mega

Hi, I have a littel confusion, The name mega puts you on the wrong foot. It is a normal esp8266, but with more memory then the esp8266/01 so a wemos/nodemcu or any esp8266 with more memory (4mb recommended) is the way to go. see the very first line in this topic Experimenting with an ESP Easy Mega ...
by anarro
15 Dec 2016, 09:48
Forum: Experimental
Topic: ESP Easy Mega
Replies: 249
Views: 634655

Re: ESP Easy Mega

Hi,

I have a littel confusion, wich are this board?, Its diferent of Arduino MEGA 2560 wich are de ESP Easy Mega edition?, someone can send a picture, please? ;)

Antoni.
by anarro
08 Dec 2016, 21:17
Forum: Experimental
Topic: Arduino Easy 2560
Replies: 130
Views: 177569

Re: Arduino Easy 2560

... but many questions :) - how can i add openhab/mqtt support???? - i2c scan lists a lot of devices - why? - devices - if i add more then one - the name is changing? and how can i add/remove i/o pins... device.JPG But i think, it will be great - THX! R147 is available with MQTT support and I2C bug...
by anarro
18 Nov 2016, 12:17
Forum: Experimental
Topic: Arduino Easy 2560
Replies: 130
Views: 177569

Re: Arduino Easy 2560

Hi,

I have five Arduino Mega to test.... and some Arduino Ethernet...
by anarro
30 Sep 2016, 20:24
Forum: RFLink: Development and announcements
Topic: Home Assistant compatibility
Replies: 4
Views: 14301

Re: Home Assistant compatibility

Hi!,

We use Home Assistant with EspEasy without any problems with a MQTT protocol..., but I like add this Controller too.

Antoni.
by anarro
29 Aug 2016, 09:43
Forum: ESP Easy: General Discussion
Topic: Feature Request collection/list
Replies: 197
Views: 184998

Re: Feature Request collection/list

Hi, If your like the idea and want to add... the option to send http PUT commands, please. I use it with this funcition in Connand.ini file. if (strcasecmp_P(Command, PSTR("SendToPUT")) == 0) //ANTONI { success = true; String strLine = Line; String host = parseString(strLine,2); String por...
by anarro
27 Aug 2016, 23:30
Forum: ESP Easy: Projects / Applications
Topic: Use a ESPEasy to control the Bridge of the Philips HUE lights.
Replies: 1
Views: 3482

Re: Use a ESPEasy to control the Bridge of the Philips HUE lights.

Hi! I update a code with only one change: 1- Add in Connand.ini file a new function SendToPUT : if (strcasecmp_P(Command, PSTR("SendToPUT")) == 0) //ANTONI { success = true; String strLine = Line; String host = parseString(strLine,2); String port = parseString(strLine,3); int pathinipos = ...
by anarro
27 Aug 2016, 23:21
Forum: Introduce yourself
Topic: Hello from Spain (Barcelona)
Replies: 0
Views: 2013

Hello from Spain (Barcelona)

Hellow to everyone, My name is Antoni I'm from Spain, Barcelona. I love the demotic systems and (few years ago) developed a some I/O boards to control devices from PCs. Now I like (in my house) use a Demotic system to control lights, Roller Shutters, Temperature, Sense Presence, Alarms, etc. I have ...
by anarro
16 Aug 2016, 10:08
Forum: ESP Easy: Projects / Applications
Topic: Dim up / down LED by a rule ?
Replies: 3
Views: 6176

Re: Dim up / down LED by a rule ?

Hi,
I think thats you can do it, can you read this document before?

http://www.esp8266.nu/index.php/Tutorial_Rules
by anarro
07 Aug 2016, 01:57
Forum: ESP Easy: Projects / Applications
Topic: Use a ESPEasy to control the Bridge of the Philips HUE lights.
Replies: 1
Views: 3482

Use a ESPEasy to control the Bridge of the Philips HUE lights.

Hi, I update a code with a new command: SendToHUE , I did it finally.. but I dont have too match knowledge of programming in Arduino... someone can I help me to get a better code, please? 1- Add in ESPEasy.ini this: #include <RestClient.h> 2- Add in Connand.ini file this: . .. if (strcasecmp_P(Comma...