💬 Connecting the Radio
-
Yes I noticed it !
Since it didn't mention IRQ pin, I didn't seen it at first !What misleaded me, is that on LowPowerLab forums, some users says that you can absolutely discard this interrupt and poll the radio frequently to ask if a packet is available.
-
I had this working perfectly on my Arduino Uno. I soldered it up to my Arduino Nano and it seems to work ok, but I'm not getting any data sent. The serial says it's connected OK but never sends any motion 1s or 0s. My MQTT server shows the following: Client mosqsub/3449-raspberryp received PUBLISH (d0, q0, r0, m0, 'mygateway1-out/255/255/3/0/3', ... (0 bytes))
Any idea what is going on? I've tested the motion sensor separately and that is sending a high value to pin 3 no worries.
-
I had this working perfectly on my Arduino Uno. I soldered it up to my Arduino Nano and it seems to work ok, but I'm not getting any data sent. The serial says it's connected OK but never sends any motion 1s or 0s. My MQTT server shows the following: Client mosqsub/3449-raspberryp received PUBLISH (d0, q0, r0, m0, 'mygateway1-out/255/255/3/0/3', ... (0 bytes))
Any idea what is going on? I've tested the motion sensor separately and that is sending a high value to pin 3 no worries.
-
@mfalkvidd Thanks and yes, they have the same pins, I didn't see Uno in the table so I google it and got incorrect instructions.
Now that I used the same as nano my node seems work :) -
@mfalkvidd Thanks and yes, they have the same pins, I didn't see Uno in the table so I google it and got incorrect instructions.
Now that I used the same as nano my node seems work :) -
Little mistake in the text, I don't think dupont cables are made of bread.
"the antenna need to be single core inside, only one wire, not multi-wire breaded like you can find in common dupont cable (not good for antenna.)"
should be
"The antenna need to be single core inside, only one wire, not multi-wire braided like you can find in common dupont cable (not good for antenna)" -
Little mistake in the text, I don't think dupont cables are made of bread.
"the antenna need to be single core inside, only one wire, not multi-wire breaded like you can find in common dupont cable (not good for antenna.)"
should be
"The antenna need to be single core inside, only one wire, not multi-wire braided like you can find in common dupont cable (not good for antenna)" -
@nitroburn thanks! I've updated the page.
@mfalkvidd No problem, did make me a little hungry though.
-
@mfalkvidd No problem, did make me a little hungry though.
-
Can anyone change the text for "Configuring MySensors for RFM69". When you want to use another pin for cs it´s not this code:
// #define RF69_SPI_CS 15 // If using a different CS pin for the SPI bus
but this
// #define My_RF69_SPI_CS 15 // If using a different CS pin for the SPI bus
-
Can anyone change the text for "Configuring MySensors for RFM69". When you want to use another pin for cs it´s not this code:
// #define RF69_SPI_CS 15 // If using a different CS pin for the SPI bus
but this
// #define My_RF69_SPI_CS 15 // If using a different CS pin for the SPI bus
-
Nrf24l01+ also drains less current when sleeping vs RFM69 -
@joseyapor neither is better. They are good at different things. See https://forum.mysensors.org/topic/3993/nordic-or-hoperf-radio/2 for an earlier discussion.
-
@Grave thanks for pointing this out. From looking at the source code, it looks like it should be MY_RFM69_CS_PIN. I have updated the text. Could you check if I got it right?
@mfalkvidd said in 💬 Connecting the Radio:
@Grave thanks for pointing this out. From looking at the source code, it looks like it should be MY_RFM69_CS_PIN. I have updated the text. Could you check if I got it right?
It looks like that MY_RFM69_CS_PIN is used only in develop branch.
Stable brach still using MY_RF69_SPI_CS. -
@mfalkvidd said in 💬 Connecting the Radio:
@Grave thanks for pointing this out. From looking at the source code, it looks like it should be MY_RFM69_CS_PIN. I have updated the text. Could you check if I got it right?
It looks like that MY_RFM69_CS_PIN is used only in develop branch.
Stable brach still using MY_RF69_SPI_CS.