tty
Member
Very interesting. Your Friday post has another device running the network.
DT=0x83 which would mean the wind vane is sending out network master packets. Maybe it uses a different ID when it is running the show?
Interesting that your display gives itself a slot then answers itself. That's new to me.
This is what my network's master packet looks like.
Next message I see is a tx from the hull transmitter.
What's interesting is that the hull transmitter doesn't even listen to the display's slot. Guess it doesn't care.
There's no marked hardware factory reset inside the devices. Service would probably use the 8 pin jtag in the battery compartments. I did look at pairing when I first started playing around with these things. It wasn't that complex. Long preamble, some packets and proximity. Devices had to be really close. I didn't dive into why but the display could be setting papow to 0 for this effect and/or measuring RSSI on pin 28 of the CC1000 as it is connected to the MCU and configured for analog signal strength.
I was headed the same way trying to get a proper slot when my display broke. Right now I don't have a right button so can't work the options menu. Replacements come this week. The part I stole off the hull transmitter is backordered till may so it'll be a long time, if ever, it'll ever talk again. So far everything has been very straight forward. Lets hope pairing will be too.
Code:
|83.03.77.37|83|03.77.37|01|09|00|72|28.28|83.03.77.37|1C|02.03.90.87|0C|01.0B.C0.22|26|81.03.70.82|0E|83.03.77.37|0E|00.00|52|
|....NUID...|DT|..DID...|MI|SO|DE|CS|.LEN.|....DID1...|PL|....DID2...|PL|....DID3...|PL|....DID4...|PL|....DID5...|PL|.???.|CS|
DT=0x83 which would mean the wind vane is sending out network master packets. Maybe it uses a different ID when it is running the show?
First burst, master request data, as usual :
83 03 77 37 81 03 70 82 01 09 00 B4 28 28 81 03 70 82 1C 02 03 90 87 0C 83 03 77 37 00 81 03 70 82 0E 01 0B C0 22 26 00 00 86 (42,-51)
The first device which should answer to the master does not respond (yet). This is why we have a "hole". This is the wind transducer (0x02039087). It will answer, but later (outside this graphic).
Then we have the second burst which is my dual display who answers to himself :
83 03 77 37 81 03 70 82 02 09 00 B5 0C 0C (14,-51)
Note that his slot allow 0x0e bytes but since it has nothing to provide, it just sends a packet with no paylod (0x0c length). A sort of acknowledge.
Interesting that your display gives itself a slot then answers itself. That's new to me.
This is what my network's master packet looks like.
Code:
01 0A 8B 60 81 03 61 7C 01 09 00 61 19 19 81 03 61 7C 0D 01 0B 8B 60 1A 00 00 7F 13
|....NUID...|DT|..DID...|MI|SO|DE|CS|.LEN.|....DID1...|PL|....DID2...|PL|....DID3...|PL|....DID4...|PL|....DID5...|PL|.???.|CS|
Next message I see is a tx from the hull transmitter.
Code:
01 0A 8B 60 01 0B 8B 60 02 01 09 F9 18 18 04 04 05 13 89 A9 04 1B 05 00 00 24
|....NUID...|DT|..DID...|MI|SO|DE|CS|.LEN.|
What's interesting is that the hull transmitter doesn't even listen to the display's slot. Guess it doesn't care.
A question for you TTY : have you seen in your open device any button or "thing" that could possibly trigger a real factory reset ?
I finally started to investigate the auto network sequence to be able to add my device and to get an "official" transmission slot. However I'm facing an issue.
There's no marked hardware factory reset inside the devices. Service would probably use the 8 pin jtag in the battery compartments. I did look at pairing when I first started playing around with these things. It wasn't that complex. Long preamble, some packets and proximity. Devices had to be really close. I didn't dive into why but the display could be setting papow to 0 for this effect and/or measuring RSSI on pin 28 of the CC1000 as it is connected to the MCU and configured for analog signal strength.
I was headed the same way trying to get a proper slot when my display broke. Right now I don't have a right button so can't work the options menu. Replacements come this week. The part I stole off the hull transmitter is backordered till may so it'll be a long time, if ever, it'll ever talk again. So far everything has been very straight forward. Lets hope pairing will be too.