💬 MySensors NRF5 Platform
-
@monte said in 💬 MySensors NRF5 Platform:
Hello, @d00616. Could you tell me which ESB library did you use to port it to arduino environment? The one that comes with Nordic SDK? After searching for few hours I haven't find any other realization of ESB mode for arduino IDE except your port included with MySensors. It's a pity. Are you going to release general purpose library, maybe?
The ESB library is written from scratch. At the time of of starting the Nordic SDK license was incompatible with open source projects. I have no plans to release this as stand-alone library. At the moment there is only an subset of the ESB protocol implemented. Enough to be compatible with MySensors RF24 devices.
Feel free to use my code to create a stand-alone library. If required, we can talk about dual licensing to code with an additional open source license.
@d00616 thanks for a reply. I will evaluate my skills for this task, when I actually will get a chip to try it on. I need some really small pcb for my project, and single chip with mcu and rf with the size of nrf51 fits perfectly, but it requires quiet simple communications and full MySensors library will be overkill and hard to adapt for my needs.
-
@d00616 thanks for a reply. I will evaluate my skills for this task, when I actually will get a chip to try it on. I need some really small pcb for my project, and single chip with mcu and rf with the size of nrf51 fits perfectly, but it requires quiet simple communications and full MySensors library will be overkill and hard to adapt for my needs.
@monte said in 💬 MySensors NRF5 Platform:
@d00616 thanks for a reply. I will evaluate my skills for this task, when I actually will get a chip to try it on. I need some really small pcb for my project, and single chip with mcu and rf with the size of nrf51 fits perfectly, but it requires quiet simple communications and full MySensors library will be overkill and hard to adapt for my needs.
You can use the MY_CORE_ONLY mode -> https://forum.mysensors.org/post/76627
-
@monte said in 💬 MySensors NRF5 Platform:
@d00616 thanks for a reply. I will evaluate my skills for this task, when I actually will get a chip to try it on. I need some really small pcb for my project, and single chip with mcu and rf with the size of nrf51 fits perfectly, but it requires quiet simple communications and full MySensors library will be overkill and hard to adapt for my needs.
You can use the MY_CORE_ONLY mode -> https://forum.mysensors.org/post/76627
@d00616 great tip, thanks! I didn't know about that option, to bad it's buried on the deepest level of documentation. I guess this will do the thing. I greatly appreciate your help, it's a pleasure when people are willing to share their knowledge with others :)
-
@monte said in 💬 MySensors NRF5 Platform:
@d00616 thanks for a reply. I will evaluate my skills for this task, when I actually will get a chip to try it on. I need some really small pcb for my project, and single chip with mcu and rf with the size of nrf51 fits perfectly, but it requires quiet simple communications and full MySensors library will be overkill and hard to adapt for my needs.
You can use the MY_CORE_ONLY mode -> https://forum.mysensors.org/post/76627
-
@d00616 one more question. Is your driver able to send broadcast messages, without defined address, or should I just use the same node address on multiple receiving nodes?
@monte Thank you.
@monte said in 💬 MySensors NRF5 Platform:
@d00616 one more question. Is your driver able to send broadcast messages, without defined address, or should I just use the same node address on multiple receiving nodes?
The broad cast address is hard coded to 0xff (255). Each node must have a uniqe address, because it's not possible to send packages to a node with the same address.
-
@d00616 thanks for a reply. I will evaluate my skills for this task, when I actually will get a chip to try it on. I need some really small pcb for my project, and single chip with mcu and rf with the size of nrf51 fits perfectly, but it requires quiet simple communications and full MySensors library will be overkill and hard to adapt for my needs.
@monte said in 💬 MySensors NRF5 Platform:
@d00616 thanks for a reply. I will evaluate my skills for this task, when I actually will get a chip to try it on. I need some really small pcb for my project, and single chip with mcu and rf with the size of nrf51 fits perfectly, but it requires quiet simple communications and full MySensors library will be overkill and hard to adapt for my needs.
If possible use the nRF52 series. There are some improvements like better radio sensivity, lower current consumption, more RAM and flash, better ADC and a better CPU. Maybe in the future there is a Firmware update OTA functionality which is easier to adapt to the NRF52 than the NRF51 platform. Another reason to use the NRF52 is, that the official Arduino NRF5 port only supports the NRF52. This port has a lot more capabilities than the arduino-nrf5 port, but MySensors is not compatible at the moment.
-
Should we worry about that ?

-
@nca78 said in 💬 MySensors NRF5 Platform:
Should we worry about that ?
No. There are some ports of Arduino for NRF5. At the moment MySensors is not compatible with the Primo Port, because it comes with the SoftDevice. It changes nothing for the current state.
-
The source code for the PIR project gives one possible answer.
-
@neverdie
I've been dealing with that code but for some reason, I don't get it to work, code-wise it seems I'm lacking..First i get this error: struct NRF_UARTE_Type' has no member named 'TASKS_SUSPEND
And when I comment that out it seems like its not waking up.I made a test sketch, which reported the status every 1000ms. this worked accurately for the last 3 days so it doesn't look like it is a sensor problem.
So my hope was that there was an easier methode available..
-
@neverdie
I've been dealing with that code but for some reason, I don't get it to work, code-wise it seems I'm lacking..First i get this error: struct NRF_UARTE_Type' has no member named 'TASKS_SUSPEND
And when I comment that out it seems like its not waking up.I made a test sketch, which reported the status every 1000ms. this worked accurately for the last 3 days so it doesn't look like it is a sensor problem.
So my hope was that there was an easier methode available..
-
@omemanti Sounds like maybe you're either missing a library or else not linking to one that's required.
-
What am I missing, I just reinstalled the whole shabang.
- Arduino IDE
- Sandeep
- Mysensors 2.2.0
thats all there is installed..
-
Also, this: https://github.com/d00616/ArduinoHwNRF5
-
Also, this: https://github.com/d00616/ArduinoHwNRF5
-
Let's say I've just bought a $2,50 NRF52 board.
Does anyone know a good tutorial for absolute beginners?
For example:
- I have no idea what a softdevice is. Should I know?
- I don't know what hardware I need. A normal serial adapter or an ST-link? Should I hack an STM32 into a black magic probe (whatever that is..), or is that for power users?
- To what pins do I connect to upload a sketch?
- How are you connecting wires onto the package? Just hotglue and very steady hands? Some cheap adapter or board? Any tips and tricks?
- There's something about text files that define how the pins work? But the serial pins are always the same? Where does the text-file go? What flavours are there? Which is the most popular?
- What boards should I enable in the Arduino IDE?
- How do I debug my sketch? Does the serial monitor work?
- Do I still need the development version of MySensors now that we are at V2.2?
- Do I need to set anything in MySensors?
- Are encryption, signing and the simple options to do this supported?
- What can it do? Can I connect a 5v sensor to it? Can it power things in the way that an Arduino can?
-
Let's say I've just bought a $2,50 NRF52 board.
Does anyone know a good tutorial for absolute beginners?
For example:
- I have no idea what a softdevice is. Should I know?
- I don't know what hardware I need. A normal serial adapter or an ST-link? Should I hack an STM32 into a black magic probe (whatever that is..), or is that for power users?
- To what pins do I connect to upload a sketch?
- How are you connecting wires onto the package? Just hotglue and very steady hands? Some cheap adapter or board? Any tips and tricks?
- There's something about text files that define how the pins work? But the serial pins are always the same? Where does the text-file go? What flavours are there? Which is the most popular?
- What boards should I enable in the Arduino IDE?
- How do I debug my sketch? Does the serial monitor work?
- Do I still need the development version of MySensors now that we are at V2.2?
- Do I need to set anything in MySensors?
- Are encryption, signing and the simple options to do this supported?
- What can it do? Can I connect a 5v sensor to it? Can it power things in the way that an Arduino can?
@alowhum all security functionality currently available for MySensors is supported om nrf52. There is nothing in the security road map that will not be supported on nrf52. The MAY be features that work best with a security peripheral but there will always be software compatible alternatives for released features that can operate on nrf52 unless it is natively supported by the HW peripherals in the chip.
-
Let's say I've just bought a $2,50 NRF52 board.
Does anyone know a good tutorial for absolute beginners?
For example:
- I have no idea what a softdevice is. Should I know?
- I don't know what hardware I need. A normal serial adapter or an ST-link? Should I hack an STM32 into a black magic probe (whatever that is..), or is that for power users?
- To what pins do I connect to upload a sketch?
- How are you connecting wires onto the package? Just hotglue and very steady hands? Some cheap adapter or board? Any tips and tricks?
- There's something about text files that define how the pins work? But the serial pins are always the same? Where does the text-file go? What flavours are there? Which is the most popular?
- What boards should I enable in the Arduino IDE?
- How do I debug my sketch? Does the serial monitor work?
- Do I still need the development version of MySensors now that we are at V2.2?
- Do I need to set anything in MySensors?
- Are encryption, signing and the simple options to do this supported?
- What can it do? Can I connect a 5v sensor to it? Can it power things in the way that an Arduino can?
@alowhum you can start with this:
https://forum.mysensors.org/topic/6705/mysensors-nrf5-platform/1
and
https://forum.mysensors.org/topic/7869/start-with-nrf5-is-very-simple/1But you should also check the NRF5 information on Nordic website.
In short it's 3.3V max (so no 5V peripherals directly), you need to program through the 2 SWD pins (SWDCLK and SWDIO) and you have different options for that, for debugging use a FTDI adapter and connect it to the pins you have assigned as TX/RX. -
Hello,
has someone successfully used VisualMicro with the MySensors NRF5 boards ?
In the board selector dropdown list I can select any board, including NRF5 boards like "Generic NRF51" or "BBC Microbit", except when I select MySensors NRF51 or NRF52 boards, then it's not doing anything and keeping the previous selected board. I have a message in the status bar saying "the first available board has been selected" and that's all, I don't find anything related to VisualMicro with this error message in Google.
I have tried with both 0.1 and 0.3 versions of the boards, and with both "Arduino 1.6/1.9" and "Visual Micro (No IDE)" IDE selections.