VS838 IR receiver led anyone got it working with mys?
-
@skywatch I found some time to rebuild your setup:
Arduino UNO, nRF24 default connection no IRQ, TSOP1738 connected to D6, Arduino IDE 1.8.10Tested first with IRRecord sketch, same pinning, working fine.
Absolute bare minimum sketch, containing MySensors (2.3.2) and IR Receiver using the same library (current version):
#define MY_DEBUG #define MY_BAUD_RATE (57600) #define MY_RADIO_RF24 #define MY_RF24_CE_PIN (9) #define MY_RF24_CS_PIN (10) #define MY_NODE_ID (254) #define MY_PARENT_NODE_ID (0) #define MY_PARENT_NODE_IS_STATIC #include <Arduino.h> #include <IRremote.h> #include <MySensors.h> const int RECV_PIN = 6; IRrecv irrecv(RECV_PIN); void presentation() { Serial.println(F("-- Init MySensors")); sendSketchInfo(F("IRSensor"), F("1.0")); } void setup() { irrecv.enableIRIn(); } void loop() { decode_results results; if (irrecv.decode(&results)) { for (int i = 0; i < results.rawlen - 1; ++i) { Serial.print(results.rawbuf[i], DEC); } Serial.println(); irrecv.resume(); } }Added basic MySensors sketch, same pinning working fine:
33 MCO:BGN:INIT NODE,CP=RNNNA---,FQ=16,REL=255,VER=2.3.2 54 TSM:INIT 56 TSF:WUR:MS=0 64 TSM:INIT:TSP OK 67 TSM:INIT:STATID=254 72 TSF:SID:OK,ID=254 75 TSM:FPAR 77 TSM:FPAR:STATP=0 81 TSM:ID 82 TSM:ID:OK 86 TSM:UPL 89 TSF:MSG:SEND,254-254-0-0,s=255,c=3,t=24,pt=1,l=1,sg=0,ft=0,st=OK:1 101 TSF:MSG:READ,0-0-254,s=255,c=3,t=25,pt=1,l=1,sg=0:1 110 TSF:MSG:PONG RECV,HP=1 115 TSM:UPL:OK 118 TSM:READY:ID=254,PAR=0,DIS=1 124 TSF:MSG:SEND,254-254-0-0,s=255,c=3,t=15,pt=6,l=2,sg=0,ft=0,st=OK:0100 138 TSF:MSG:READ,0-0-254,s=255,c=3,t=15,pt=6,l=2,sg=0:0100 149 TSF:MSG:SEND,254-254-0-0,s=255,c=0,t=17,pt=0,l=5,sg=0,ft=0,st=OK:2.3.2 163 TSF:MSG:SEND,254-254-0-0,s=255,c=3,t=6,pt=1,l=1,sg=0,ft=0,st=OK:0 -- Init MySensors 2177 TSF:MSG:SEND,254-254-0-0,s=255,c=3,t=11,pt=0,l=8,sg=0,ft=0,st=OK:IRSensor 2193 TSF:MSG:SEND,254-254-0-0,s=255,c=3,t=12,pt=0,l=3,sg=0,ft=0,st=OK:1.0 2205 MCO:REG:REQ 2209 TSF:MSG:SEND,254-254-0-0,s=255,c=3,t=26,pt=1,l=1,sg=0,ft=0,st=OK:2 2223 TSF:MSG:READ,0-0-254,s=255,c=3,t=27,pt=1,l=1,sg=0:1 2232 MCO:PIM:NODE REG=1 2237 MCO:BGN:STP 2240 MCO:BGN:INIT OK,TSP=1 142892861371371371371371227137128137137137128128128128128128712271326132712812271326137132712812812713713713713271281227122713271227 113792861371371371371281326137137137137137128128128128128128712271327122712812271327127132712812812812812812713271281227132613271227 113692861371371371371371327127137137137137137137137128128128713261327122713713261327128122713712812812812812812271281227132712271227 113692871281271371371371327128127137137137137137137137137128713261327122713713261327128122712813713712812812812271371326132712271326 113692871281281271371371327128128127137137137137137128137138613271227122713713271227128122713713713713712812812271281227132712271326 2699393861371371361461371327137137137136146137137137137137138613271326132613713271326137132613713713713713713713261371326142613261325 113692861371371371371371326137137137137137137136146137137138614261326132713614261326137132614613713713713713713261371327132613261327 113692861371371371371371326137137137137137137137137136146138713261326132713713261326137132713614613713713713713261461327132613251526 113691871371281281281281227137128128128128128128127137137138712271227132712811281227137122812713712812812812812271371228122713261327 1137898912811911911911911281281191191191191191191191010109118912271227122812811281227128112912810911911911911911291181129122712281128 113789891371281281191281227128128128128128128128119128118128812271227122812812271227128122812811812812812812812281271228122712281227I suggest to try with my sketch and see if that works.
BTW. Passing a LED pin to the constructor as status indicator doesn't seem to work, or my eyes are just too slow :smirk:
@Yveaux I cannot thank you enough for doing this to try and help me out. It is really kind of you.
I am using 1.8.9 IDE as I had issues with 1.8.10 (as did others). Also I notice that you have forced 57600 as the baud rate in the sketch. Is this the magic bullet I wonder as I left mine at the default 115200 setting. I can't imagine why it would make a difference though.
I will be trying it shortly and will report back with anything I find.
I owe you a beer for sure! ;) -
@Yveaux I cannot thank you enough for doing this to try and help me out. It is really kind of you.
I am using 1.8.9 IDE as I had issues with 1.8.10 (as did others). Also I notice that you have forced 57600 as the baud rate in the sketch. Is this the magic bullet I wonder as I left mine at the default 115200 setting. I can't imagine why it would make a difference though.
I will be trying it shortly and will report back with anything I find.
I owe you a beer for sure! ;)@skywatch said in VS838 IR receiver led anyone got it working with mys?:
@Yveaux I cannot thank you enough for doing this to try and help me out. It is really kind of you.
Glad I could help!
I am using 1.8.9 IDE as I had issues with 1.8.10 (as did others).
I didn't encounter any issues with 1.8.10 so far, but I don't expect it will make a difference in your case
Also I notice that you have forced 57600 as the baud rate in the sketch. Is this the magic bullet I wonder as I left mine at the default 115200 setting. I can't imagine why it would make a difference though.
57600 is the default baud rate at 3v3 for pro mini iirr. This might be related to when using the internal oscillator and the frequency errors introduced by it. But pro mini uses an external crystal so I have to dig the datasheets to know for sure. Maybe some other forum member knows it by heart...
I owe you a beer for sure! ;)
Great! That I will remember :laughing:
-
@skywatch said in VS838 IR receiver led anyone got it working with mys?:
@Yveaux I cannot thank you enough for doing this to try and help me out. It is really kind of you.
Glad I could help!
I am using 1.8.9 IDE as I had issues with 1.8.10 (as did others).
I didn't encounter any issues with 1.8.10 so far, but I don't expect it will make a difference in your case
Also I notice that you have forced 57600 as the baud rate in the sketch. Is this the magic bullet I wonder as I left mine at the default 115200 setting. I can't imagine why it would make a difference though.
57600 is the default baud rate at 3v3 for pro mini iirr. This might be related to when using the internal oscillator and the frequency errors introduced by it. But pro mini uses an external crystal so I have to dig the datasheets to know for sure. Maybe some other forum member knows it by heart...
I owe you a beer for sure! ;)
Great! That I will remember :laughing:
@Yveaux Your code works.....until I add it to mine and then it stops working for some inexplicable reason that will drive me insane I think. ;)
I copied across your code line by line and still it refuses to 'see' any IR commands being received.I have tried excluding the watchdog, excluding the bh1750, adding arduino.h and excluding wire.h and none of those make any difference.
-
@Yveaux Your code works.....until I add it to mine and then it stops working for some inexplicable reason that will drive me insane I think. ;)
I copied across your code line by line and still it refuses to 'see' any IR commands being received.I have tried excluding the watchdog, excluding the bh1750, adding arduino.h and excluding wire.h and none of those make any difference.
-
@skywatch Maybe the cause lies outside your sketch; Are you using MySensors 2.3.2? Or do try with Arduino 1.8.10
-
@skywatch Maybe the cause lies outside your sketch; Are you using MySensors 2.3.2? Or do try with Arduino 1.8.10
@Yveaux Ihave 2 issues that I have identified, but can't work out the cause.
Issue 1 - No IR received seems to be caused by thise section of code. Commenting it out and it works as expected (but of course will never transmit).....
if (newcodeRX == 1 || lightrequest == 1) { irsend.sendNEC(INcode, 32); newcodeRX = 0; lightrequest = 0; }Second issue, is when receiving IR is working I cannot do anything useful with it. I have tried 2 methods to get a value and perform a function with it and both fail. See the 2 methods tried here......
decode_results results; if (irrecv.decode(&results)) { Serial.print("IR Received... "); Serial.println(results.value, HEX); IRin = (results.value, HEX); Serial.print(" IRin... "); Serial.println(IRin); irrecv.resume(); // Receive the next value } if (IRin == 0xFFA25D) { lights = 1; Serial.print("Lights ON... "); } if ((results.value, HEX) == 0xFFE21D) { lights = 0; Serial.print("Lights OFF... "); }I need to eat now, will get back to this later on......
-
So here is what I learned from all this....
Issue 1 - Was caused by the fact that IRsend was called at first boot - nothing wrong with that, but what I didn't know was that IRsend disables IR receive.
The solution was as simple as adding one more line to that section of code as follows.....if (newcodeRX == 1 || lightrequest == 1) { irsend.sendNEC(INcode, 32); newcodeRX = 0; lightrequest = 0; irrecv.enableIRIn(); // Start the receiver }This re-enables the receiver and then all is working as expected!
As for the second issue......Well, I'll just post the code for anyone interested.....
if (irrecv.decode(&results)) { IRin = results.value,HEX; if (IRin == 0xFFA25D) { lights = 1; Serial.print("Lights ON... "); } if (IRin == 0xFFE21D) { lights = 0; Serial.print("Lights OFF... "); } if (lights != last_lights) { saveState(10, lights); send(msgLights.set(lights)); last_lights = lights; } irrecv.resume(); // Receive the next value }It's always soooooo easy when you know how! ;)
Onwards and upwards! :)
-
So here is what I learned from all this....
Issue 1 - Was caused by the fact that IRsend was called at first boot - nothing wrong with that, but what I didn't know was that IRsend disables IR receive.
The solution was as simple as adding one more line to that section of code as follows.....if (newcodeRX == 1 || lightrequest == 1) { irsend.sendNEC(INcode, 32); newcodeRX = 0; lightrequest = 0; irrecv.enableIRIn(); // Start the receiver }This re-enables the receiver and then all is working as expected!
As for the second issue......Well, I'll just post the code for anyone interested.....
if (irrecv.decode(&results)) { IRin = results.value,HEX; if (IRin == 0xFFA25D) { lights = 1; Serial.print("Lights ON... "); } if (IRin == 0xFFE21D) { lights = 0; Serial.print("Lights OFF... "); } if (lights != last_lights) { saveState(10, lights); send(msgLights.set(lights)); last_lights = lights; } irrecv.resume(); // Receive the next value }It's always soooooo easy when you know how! ;)
Onwards and upwards! :)