Universal board bought from from Slovenia Radio Woes. (solved)
-
Hi Guys,
Has anyone bought one of these boards? I've modified my code so that it works with pin 7 and 8 as he's these rather than the regular radio attachment pins. I'm just getting Radio Init Failed messages, any advice?MyTransportNRF24 transport(7, 8); // Ceech board, 3.3v (7,8) MySensor gw(transport);I've tried external power as well as battery power with the same results.
-
I'm using the solar cell version of this board (here), and I've made the same transport change as you - been using this for over 9 months now, without problems.
Which version of the MySensors library are you using (I'm on 1.5)?
-
This might be a stupid question, but have you checked that you soldered the nrf module in the correct orientation and that the electrical connection is good?
Also, do you know that the nrf module works? Can you test it on Another Arduino and/or try another nrf? -
This might be a stupid question, but have you checked that you soldered the nrf module in the correct orientation and that the electrical connection is good?
Also, do you know that the nrf module works? Can you test it on Another Arduino and/or try another nrf?@mfalkvidd @MikeF I've now resolved the issue. With this board you have to set D3 high so that it powers the radio, shame as that really ties pin 3 up then but i guess he's done it to make the radio optional as he supports bluetooth as well. It's a nice lower power board but i think i've been spoilt by the otherboards i've used which have used the same pinouts etc. I think the solar one which you have may have been of more use thinking about it but hey ho. It's trivial but just incase anyone else is as simple minded as me i put the following in setup
pinMode(3, OUTPUT);
digitalWrite(3,HIGH);Thanks
Col -
Hi Guys,
Has anyone bought one of these boards? I've modified my code so that it works with pin 7 and 8 as he's these rather than the regular radio attachment pins. I'm just getting Radio Init Failed messages, any advice?MyTransportNRF24 transport(7, 8); // Ceech board, 3.3v (7,8) MySensor gw(transport);I've tried external power as well as battery power with the same results.
-
Sidenote: @ceech published this board on openhardware.io today
https://www.openhardware.io/view/98/ATMega328p-board-with-NRF24l01-and-Bluetooth-module-socket
-
@kenci Hi Kenci, yeah i'd been in contact with him through ebay as i purchased it from him but sadly he wasn't able to assist too much as he said he was a hardware rather than software guy. I figured it out in the end, wasn't rocket science and just took a little digging which i'm not adverse too but just couldn't see it at first.