Please help support the site by donating at the link below.https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=8ZRU34U47BESW
ROM chip fried an egg and saw its last day when a friend messed with my power supply
Command From Controller Answer From Chatpad Every Answer is being repeated 4 Times Every Answer Is Split In Two Groups Group 1 Is Always 0xA5 X5 X Is 0, 4 or 8 Group 2 Is Always 0xF0 04 00 XX XX YY XX Is Counting Up Every Answer YY Is Some Number I Can't Seem To Figure Out What It Is Command Is Being Sent Every Second0x87 82 1E 8C 4D 0xA5 45 0xF0 04 00 06 06 16 0xA5 45 0xF0 04 00 06 06 16 0xA5 45 0xF0 04 00 06 06 16 0xA5 45 0xF0 04 00 06 06 16 0x87 C2 1F 8C 0C 0xA5 85 0xF0 04 00 07 07 D4 0xA5 85 0xF0 04 00 07 07 D4 0xA5 85 0xF0 04 00 07 07 D4 0xA5 85 0xF0 04 00 07 07 D4 0x87 02 1E 8C CD 0xA5 05 0xF0 04 00 08 08 52 0xA5 05 0xF0 04 00 08 08 52 0xA5 05 0xF0 04 00 08 08 52 0xA5 05 0xF0 04 00 08 08 52 0x87 42 1F 8C 8C 0xA5 45 0xF0 04 00 09 09 10 0xA5 45 0xF0 04 00 09 09 10 0xA5 45 0xF0 04 00 09 09 10 0xA5 45 0xF0 04 00 09 09 10 0x87 82 1E 8C 4D 0xA5 85 0xF0 04 00 0A 0A CE 0xA5 85 0xF0 04 00 0A 0A CE 0xA5 85 0xF0 04 00 0A 0A CE 0xA5 85 0xF0 04 00 0A 0A CE 0x87 C2 1F 8C 0C 0xA5 05 0xF0 04 00 0B 0B 4C 0xA5 05 0xF0 04 00 0B 0B 4C 0xA5 05 0xF0 04 00 0B 0B 4C 0xA5 05 0xF0 04 00 0B 0B 4C 0x87 02 1E 8C CD 0xA5 45 0xF0 04 00 0C 0C 0A 0xA5 45 0xF0 04 00 0C 0C 0A 0xA5 45 0xF0 04 00 0C 0C 0A 0xA5 45 0xF0 04 00 0C 0C 0A
You may be thinking way too much about this. The contorller needs EEPROM for two reasons: Store a unique ID for the controller only and to store startup data for the blue-tooth module. Most wireless modules use EEPROM for boot-up in stand-alone systems.
Oh, those commands you posted earlier, I know what the YY is:modified bit checking calculation.Take all the byte from the line and add them up:0xA5 45 0xF0 04 00 06 06 = 0x1EA -> dump the 1 as we keep data in byte format and lose the carry.THen take this value and subtract from 0 (2's compliment?):0x00 - 0xEA = FFFFFFFFF16 or simply 0x16 if you only keep the 8 bit data byte format.