You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When using the walk-through setup on the Enviro Urban I selected that I didn't ever want readings uploaded. I was having issues with the instrument working - it was continuously pulsing after it's first start-up. I tried to run main.py (all as it came shipped - I had made no edits) from Thonny and got this error:
Traceback (most recent call last):
File "<stdin>", line 87, in <module>
TypeError: unsupported types for __ge__: 'int', 'str'
which relates to the line
if cache_file_count >= config.upload_frequency:
The error seems to be because config.py has the line upload_frequency = ''. Presumably the walk-through setup and associated code needs editing to make this all compatible for if people don't want to upload data - either a string check on line 87 or instead using an unattainably high value instead of '' in the config file.
The text was updated successfully, but these errors were encountered:
When using the walk-through setup on the Enviro Urban I selected that I didn't ever want readings uploaded. I was having issues with the instrument working - it was continuously pulsing after it's first start-up. I tried to run
main.py
(all as it came shipped - I had made no edits) from Thonny and got this error:which relates to the line
The error seems to be because
config.py
has the lineupload_frequency = ''
. Presumably the walk-through setup and associated code needs editing to make this all compatible for if people don't want to upload data - either a string check online 87
or instead using an unattainably high value instead of''
in the config file.The text was updated successfully, but these errors were encountered: