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
In SerialCommands.py having an issue with this function:
def get_data(self): if not self.serial.is_open: return None else: return self.serial.readline().decode('utf-8').split(',')
getting this error:
AttributeError: 'NoneType' object has no attribute 'is_open'
NoneType object I'm believing is self.serial this could be my package but my pyserial is 3.5
The text was updated successfully, but these errors were encountered:
@AIT-tommy Ok friend, thanks for the report, soon I will release a correction.
Sorry, something went wrong.
Same issue here.
@RafigRzayev I will fix this today.
No branches or pull requests
In SerialCommands.py having an issue with this function:
def get_data(self):
if not self.serial.is_open:
return None
else:
return self.serial.readline().decode('utf-8').split(',')
getting this error:
AttributeError: 'NoneType' object has no attribute 'is_open'
NoneType object I'm believing is self.serial this could be my package but my pyserial is 3.5
The text was updated successfully, but these errors were encountered: