How would you code 00101100 using manchester coding?
Answers
Answered by
1
For these challenges, the decoded data is the same. Here is what's expected:
# Binary Decoded Pulses Meaning 00001101 0101010110100110 # The "payload size", which is the number of BYTES # that will be send in this message. Here, our # payload size will be 13 (an integer). 01001000 0110010110010101 # H 01100101 0110100101100110 # e 01101100 0110100110100101 # l 01101100 0110100110100101 # l 01101111 0110100110101010 # o 00101100 0101100110100101 # , 00100000 0101100101010101 # <space> 01010111 0110011001101010 # W 01101111 0110100110101010 # o 01110010 0110101001011001 # r 01101100 0110100110100101 # l 01100100 0110100101100101 # d 00101110 0101100110101001 # . #### Simple
# Binary Decoded Pulses Meaning 00001101 0101010110100110 # The "payload size", which is the number of BYTES # that will be send in this message. Here, our # payload size will be 13 (an integer). 01001000 0110010110010101 # H 01100101 0110100101100110 # e 01101100 0110100110100101 # l 01101100 0110100110100101 # l 01101111 0110100110101010 # o 00101100 0101100110100101 # , 00100000 0101100101010101 # <space> 01010111 0110011001101010 # W 01101111 0110100110101010 # o 01110010 0110101001011001 # r 01101100 0110100110100101 # l 01100100 0110100101100101 # d 00101110 0101100110101001 # . #### Simple
Similar questions