Search found 10 matches

by BasemAlsaeed
06 Sep 2018, 18:17
Forum: ESP Easy: Hardware
Topic: PCD8544 - Nokia 5110/3310 LCD - beta plugin
Replies: 88
Views: 101378

Re: PCD8544 - Nokia 5110/3310 LCD - beta plugin

You also have to define "USES_P208" Add it to the appropriate line with "build_flags" in the platformio.ini file. You add a define using the -D flag. So for example in the [common] section: build_flags = -D BUILD_GIT='"${sysenv.TRAVIS_TAG}"' -D NDEBUG -lstdc++ -lsupc++...
by BasemAlsaeed
05 Sep 2018, 02:09
Forum: ESP Easy: Hardware
Topic: PCD8544 - Nokia 5110/3310 LCD - beta plugin
Replies: 88
Views: 101378

Re: PCD8544 - Nokia 5110/3310 LCD - beta plugin

ok now it compiles successfully however the plugin does not appear in the devices list to pick here is the code i used #ifdef USES_P208 //####################################################################################################### //################################## Plugin 208: NOKIA lcd...
by BasemAlsaeed
05 Sep 2018, 00:56
Forum: ESP Easy: Hardware
Topic: PCD8544 - Nokia 5110/3310 LCD - beta plugin
Replies: 88
Views: 101378

Re: PCD8544 - Nokia 5110/3310 LCD - beta plugin

Hi, i am trying to compile using PlatformIO, and i get the below messages D:/ESPEasy-mega-20180904/src/_P208_PCD8544.ino: In function 'boolean Plugin_208(byte, EventStruct*, String&)': D:/ESPEasy-mega-20180904/src/_P208_PCD8544.ino:126:20: warning: unused variable 'setTextWrap' [-Wunused-variabl...
by BasemAlsaeed
19 Jul 2017, 01:19
Forum: ESP Easy: Projects / Applications
Topic: ESPEasy to control air conditioners / heat pumps
Replies: 163
Views: 216157

Re: ESPEasy to control air conditioners / heat pumps

Hi Toni
is there any plans to include this work in the public ESPEasy dev release ? or we will have to compile every time ?
thanks a lot for your great work :)
by BasemAlsaeed
01 Jul 2017, 01:23
Forum: ESP Easy: General Discussion
Topic: Controlling a continuous rotation servo
Replies: 2
Views: 3234

Re: Controlling a continuous rotation servo

Thank you for the info, actually i have had this link some time ago, and i tried the pulse method with no luck, it just turns the servo on for a fraction of a second and it stops
i use http://192.168.1.234/control?cmd=pulse,12,1,2
any other ideas ? :)
by BasemAlsaeed
25 Jun 2017, 04:24
Forum: ESP Easy: General Discussion
Topic: Controlling a continuous rotation servo
Replies: 2
Views: 3234

Controlling a continuous rotation servo

Hi all, i want to control a continuous rotation servo, i am using the latest ESP Easy version and connecting my signal pin from the servo to GPIO12 in the ESP12E, as far as i understand in the continuous rotation servos there is nothing to limit the rotation based on position, i am using the command...
by BasemAlsaeed
05 Dec 2016, 22:20
Forum: ESP Easy: Hardware
Topic: IR Transmitter ?
Replies: 120
Views: 190562

Re: IR Transmitter ?

Hi all,
is it possible by any means to send RAW large IR code like the ones used in ACs ? i managed to have this working on a normal Arduino, but it seems that Plugin P035 is configured only with the 7 well known protocols
it would be perfect if we have the ability to send RAW large commands
by BasemAlsaeed
12 Sep 2016, 00:12
Forum: ESP Easy: Software
Topic: Turning LED on and off based on LCD status
Replies: 2
Views: 3233

Re: Turning LED on and off based on LCD status

Well, now everything is working as i want, i connected the KY036 touch sensor to GPIO 4, and configured a new device as a Switch type "Push Button Active Low", and then i modified my rule to be : on s1#switch do gpio,5,1 lcdcmd,on timerSet,1,10 //Set Timer 1 for the next event in 4 seconds...
by BasemAlsaeed
11 Sep 2016, 23:39
Forum: ESP Easy: Software
Topic: Turning LED on and off based on LCD status
Replies: 2
Views: 3233

Re: Turning LED on and off based on LCD status

Ok, i found a solution I found that if I create a device with a SWITCH input type for the GPIO connected to Display on/off button (in my case the button is connected to GPIO 4) I can use it in rules based on its state now my rule is like this: on s1#switch do gpio,5,1 timerSet,1,4 endon On Rules#Tim...
by BasemAlsaeed
11 Sep 2016, 16:48
Forum: ESP Easy: Software
Topic: Turning LED on and off based on LCD status
Replies: 2
Views: 3233

Turning LED on and off based on LCD status

hi there,
i have a Display connected I2C and there is a button configured to turn on the Display for 5 seconds, i am wondering if there is a way that i can turn an LED connected to GPIO 5 when the Display is turned on and turn the LED of after the LCD turn off ?
thanks