-
Notifications
You must be signed in to change notification settings - Fork 31
Closed
Labels
enhancementNew feature or requestNew feature or request
Description
Adafruit IO displays floats with 6 precision points by default.
To reduce this, you could do something in code.py to truncate the value such as:
temperature = '%0.2f'%(temperature)
send_data
could be enhanced by adding an optional precision
kwarg which would modify the data to include N precision points, before assembling the json payload.
Metadata
Metadata
Assignees
Labels
enhancementNew feature or requestNew feature or request