Search found 6 matches
- Wed Dec 17, 2014 10:41 pm
- Forum: IR Protocols & Codes
- Topic: Arduino: Infrared Issue - Send RAW data
- Replies: 16
- Views: 51165
Re: Arduino: Infrared Issue - Send RAW data
Hello again! The sequences you've sent me are not working :( :( :( Here the code I've used to test it: #include <IRremote.h> IRsend irsend; unsigned int Signal_Beep_0[] = {1450,250,1350,750,450,800,1250,450,1250,850,400,1250,400,1250,400,1300,400,850,1250,850,400,1250,400,1250,400,1300,400,1250,400,...
- Wed Dec 17, 2014 8:18 am
- Forum: IR Protocols & Codes
- Topic: Arduino: Infrared Issue - Send RAW data
- Replies: 16
- Views: 51165
Re: Arduino: Infrared Issue - Send RAW data
Many many thanks for your support and suggestions. I'll test it this evening or latest in the next days.
I'll let you know soon
Simon
I'll let you know soon
Simon
- Tue Dec 16, 2014 3:36 pm
- Forum: IR Protocols & Codes
- Topic: Arduino: Infrared Issue - Send RAW data
- Replies: 16
- Views: 51165
Re: Arduino: Infrared Issue - Send RAW data
Here some raw signals: Stove Beep: A67DE433 Unknown encoding: A67DE433 (32 bits) Raw (40): -3096 1400 -250 1300 -800 450 -850 1250 -400 1200 -900 400 -1250 400 -1300 400 -1250 400 -850 1200 -900 400 -1250 400 -1300 400 -1250 400 -1300 400 -1250 400 -1250 400 -1300 350 -1300 400 -1250 400 A67DE433 Un...
- Tue Dec 16, 2014 1:21 pm
- Forum: IR Protocols & Codes
- Topic: Arduino: Infrared Issue - Send RAW data
- Replies: 16
- Views: 51165
Re: Arduino: Infrared Issue - Send RAW data
Why are you spending time using sendRAW when " sendSONY " is much better???? (However, you still need to send it 3 times) I know it's much better. It was only a test to check if I was able to use send.RAW in a situation where a well known SONY signal was sent. After that I'm moving to the...
- Tue Dec 16, 2014 9:13 am
- Forum: IR Protocols & Codes
- Topic: Arduino: Infrared Issue - Send RAW data
- Replies: 16
- Views: 51165
Re: Arduino: Infrared Issue - Send RAW data
Thank you a lot for your suggestions! Meanwhile, thanks to this forum too, I was able to send a RAW SONY Signal successfully. I've modified a little the code from: // send variable sonyPower in length 31 at 40 Khz irsend.sendRaw(sonyPower,31,40); to for (int i = 0; i < 3; i++) { irsend.sendRaw(stove...
- Fri Dec 12, 2014 11:37 am
- Forum: IR Protocols & Codes
- Topic: Arduino: Infrared Issue - Send RAW data
- Replies: 16
- Views: 51165
Arduino: Infrared Issue - Send RAW data
Hello to all! I've posted this thread already on Arduino forum, but I'm here to ask held as well :) original forum: http://forum.arduino.cc/index.php?topic=285012 I'm trying to clone a command sent by a remote that acts to turn ON or OFF a stove. I've found this library which should do well the stuf...