posted an update

Decision time!

Update 2

So we've decided to do option #3, machine learning for decoding using ASCII. If curious, here is a snippet converting characters to ASCII:

def get_ascii(arr):
    ascii_list = []

    for char in arr:
        ascii_list.append(ord(char[0])) # char[0] so it doesnt grab "\n"

    print(ascii_list)
    return ascii_list

Log in or sign up for Devpost to join the conversation.