I am trying to run the python software, "ComArduino" which is posted as a sticky above. However, it would appear that some changes in Python 3 do not allow it to be run.
Aside from the easy to understand change invalid syntax in how print is commanded, now requiring parensesis () around the subject to be printed, there is some change in the way strings, bytes and concatenation is called for.
When I try to run it, I get the following error(s):
Traceback (most recent call last):
File "C:\Users\xx\AppData\Local\Programs\Python\Python37-32\ComArduino2 (1).py", line 163, in
waitForArduino()
File "C:\Users\xx\AppData\Local\Programs\Python\Python37-32\ComArduino2 (1).py", line 101, in waitForArduino
msg = recvFromArduino()
File "C:\Users\xx\AppData\Local\Programs\Python\Python37-32\ComArduino2 (1).py", line 79, in recvFromArduino
ck = ck + x
TypeError: can only concatenate str (not "bytes") to str