Add files via upload

This commit is contained in:
DJ2LS 2020-12-15 15:38:15 +01:00 committed by GitHub
parent 8e9388da83
commit 42c8eda4bc
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -26,8 +26,8 @@ def main():
data = b'TEST' #byte string which will be send
#data = bytes(62) #byte string with XX of zeros
modulated_data = modem.Modulate(data) #Call Modulate function, which returns modulated data
#print(modulated_data)
modulated_data = modem.Modulate(data) #Call Modulate function, which modulates data and prints it to the terminal
###################### try: / except necessary beacuse of error 32 - BrokenPipeError while piping data