We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hello,
I'm trying to send messages to an android app called Serial USB Terminal. I'm using the following code to write a message:
import serial ser = serial.Serial(port='/dev/cu.usbserial-1130', baudrate=19200, bytesize=serial.EIGHTBITS, parity=serial.PARITY_NONE, stopbits=serial.STOPBITS_ONE, timeout=1, xonxoff=False, rtscts=False, write_timeout=30, dsrdtr=False, inter_byte_timeout=None, exclusive=None) if ser.is_open: ser.open() print(ser.write("test".encode())) ser.flush() ser.close()
The issue is that the messages doesn't appear on the app terminal, like nothing is being received. I leave here some screenshots of the app:
I've already tried on a M1 as well as on a Windows 11 machine with no luck whatsoever. Thanks
This issue has been cloned from: pyserial#762
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Hello,
I'm trying to send messages to an android app called Serial USB Terminal. I'm using the following code to write a message:
The issue is that the messages doesn't appear on the app terminal, like nothing is being received. I leave here some screenshots of the app:
![image](https://private-user-images.githubusercontent.com/7388957/342668157-ba896849-1cc8-4260-b490-d810b9d5d04e.png?jwt=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiJnaXRodWIuY29tIiwiYXVkIjoicmF3LmdpdGh1YnVzZXJjb250ZW50LmNvbSIsImtleSI6ImtleTUiLCJleHAiOjE3MzkwOTk4MTAsIm5iZiI6MTczOTA5OTUxMCwicGF0aCI6Ii83Mzg4OTU3LzM0MjY2ODE1Ny1iYTg5Njg0OS0xY2M4LTQyNjAtYjQ5MC1kODEwYjlkNWQwNGUucG5nP1gtQW16LUFsZ29yaXRobT1BV1M0LUhNQUMtU0hBMjU2JlgtQW16LUNyZWRlbnRpYWw9QUtJQVZDT0RZTFNBNTNQUUs0WkElMkYyMDI1MDIwOSUyRnVzLWVhc3QtMSUyRnMzJTJGYXdzNF9yZXF1ZXN0JlgtQW16LURhdGU9MjAyNTAyMDlUMTExMTUwWiZYLUFtei1FeHBpcmVzPTMwMCZYLUFtei1TaWduYXR1cmU9Y2RlNWU5YmM5NDk5MTdiMDBhNjQ4ZGI0Y2RkMmE1NmIwM2I5YWVkNTBlM2MxZTMyOGNjYTRkMmFjNGY5OGFlZSZYLUFtei1TaWduZWRIZWFkZXJzPWhvc3QifQ.g0nc8HfctcZ2GBwFm3aZTu9FfLgVj-xqMC6Chj8MSKg)
![image](https://private-user-images.githubusercontent.com/7388957/342668381-d4680d3d-75d0-457b-8ecb-5cbc040e8f84.png?jwt=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiJnaXRodWIuY29tIiwiYXVkIjoicmF3LmdpdGh1YnVzZXJjb250ZW50LmNvbSIsImtleSI6ImtleTUiLCJleHAiOjE3MzkwOTk4MTAsIm5iZiI6MTczOTA5OTUxMCwicGF0aCI6Ii83Mzg4OTU3LzM0MjY2ODM4MS1kNDY4MGQzZC03NWQwLTQ1N2ItOGVjYi01Y2JjMDQwZThmODQucG5nP1gtQW16LUFsZ29yaXRobT1BV1M0LUhNQUMtU0hBMjU2JlgtQW16LUNyZWRlbnRpYWw9QUtJQVZDT0RZTFNBNTNQUUs0WkElMkYyMDI1MDIwOSUyRnVzLWVhc3QtMSUyRnMzJTJGYXdzNF9yZXF1ZXN0JlgtQW16LURhdGU9MjAyNTAyMDlUMTExMTUwWiZYLUFtei1FeHBpcmVzPTMwMCZYLUFtei1TaWduYXR1cmU9ZjBlOGIzOTEyYjllYjZlOGE5ZjBhZjFhYjYwYzI0NzQwNTc1YTgxM2E3ZDU4MmY0ZDI1MGYxMzg4OWQxMWU2YiZYLUFtei1TaWduZWRIZWFkZXJzPWhvc3QifQ.aOCrzqAE9tJWhZ-fQzyR8_F3kWj8ep6AbchItacRoo8)
I've already tried on a M1 as well as on a Windows 11 machine with no luck whatsoever.
Thanks
This issue has been cloned from: pyserial#762
The text was updated successfully, but these errors were encountered: