Description
Hello,
EDIT: I used the online IDE and the code from @microbit-carlos below. I found that setting
radio.config(data_rate=radio.RATE_2MBIT)
was causing the strange communication issue between different Micro:bit versions
I'm writing a script that involves communication between micro:bit devices. I want to at a later time isolate which m:b's on the network receive certain communications. So I was experimenting with manually setting the channel configuration. (if there is a better way to do this, e.g via setting address please let me know)
My issue is that my micro:bits cannot communicate to each other if set to the same channel. To replicate:
I have 2 m:b V2 devices and one m:b V1.
All devices are connected to my pc via micro-usb cable.
I am using vs-code with the micro:bit python extension by MAKintact, seems to work great.
The issue (and my attempts at debugging):
set channel = 0
m:b V2 devices can NOT communicate to each other
m:b V1 device will receive messages from both V2's
When I set channel = 1 only on m:b V2-B
m:b V2-B can send/receive to/from m:b V2-A
m:b V2-B can receive from m:b V1, but not send to V1
m:b V2-A can send to both V1 and m:b V2-B, but cannot receive from V1
When I set both V2's one channel higher than the V1,
V1 can send to both V2's, but nobody can receive signal from V2 A or B
When they are one channel apart V1:ch6 V2Ach7 V2Bch8
A and b can send/receive
V1 can send to A but receives from no one
If i set V1 to ch7 and V2Ach6 and V2Bch8
V1 can send to both and no one else can communicate.
My only conclusion is that there is a miss-match in how these different micro:bits are interpreting channel information!
Appreciate your help :)