Search found 3 matches

by cobalt78
08 Oct 2018, 12:56
Forum: ESP Easy: General Discussion
Topic: command problem on OLED
Replies: 1
Views: 1487

command problem on OLED

Hi, This the command i am using in menu tool/command : oled,4,1,Temp 20.5 C message : Unknown command! the dot is the problem. With oled,4,1,Temp 20 C no issue Same problem using url xx.xx.xx.xx/control?cmd=oled,1,1,Temp 20.5 C I am using the esp easy mega-20181006 on wemos D1 Any new on it ?
by cobalt78
23 May 2018, 09:26
Forum: ESP Easy: Hardware
Topic: IRSEND with SONY type and 3 times repeat
Replies: 1
Views: 3423

Re: IRSEND with SONY type and 3 times repeat

It seams that noboby use Sony device ....
by cobalt78
15 May 2018, 15:59
Forum: ESP Easy: Hardware
Topic: IRSEND with SONY type and 3 times repeat
Replies: 1
Views: 3423

IRSEND with SONY type and 3 times repeat

Hi, I would like to understand how to send IR remote in http with 3 times repeat for sony device ? On Arduino UNO : #include <IRremote.h> IRsend irsend; void setup() { } void loop() { for (int i = 0; i < 3; i++) { irsend.sendSony(0xa81, 12); delay(40); } delay(5000); //5 second delay between each si...