Index: Miscellaneous/DG_Firmware_Simulator.py =================================================================== diff -u -r605d20932add678b8e3f0f97b4c7bad21847801f -raf4e78cc8f334d92a29ce7aa2b89c15a2cca8064 --- Miscellaneous/DG_Firmware_Simulator.py (.../DG_Firmware_Simulator.py) (revision 605d20932add678b8e3f0f97b4c7bad21847801f) +++ Miscellaneous/DG_Firmware_Simulator.py (.../DG_Firmware_Simulator.py) (revision af4e78cc8f334d92a29ce7aa2b89c15a2cca8064) @@ -16,6 +16,11 @@ sync_req_id = 0x05 sync_packet = DialityPacket.buildPacket(sync_req_id, [0x06, 0x02]) +# Building Sync message +sync_req_id = 0x05 +sync_packet_2 = DialityPacket.buildPacket(sync_req_id, [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15]) + + channel_id = 0x01 print("") @@ -38,7 +43,7 @@ # This is the main loop while True: - diality_messenger.send(channel_id, sync_packet) + diality_messenger.send(channel_id, sync_packet_2) print(".", end='', flush=True) sleep(1)