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
Tried this example: https://circuitpython.readthedocs.io/projects/clue/en/latest/api.html#adafruit_clue.Clue.simple_text_display
from adafruit_clue import clue clue_data = clue.display_clue_data(title="CLUE Sensor Data!", title_scale=2, num_lines=3) while True: clue_data[0].text = "Acceleration: {:.2f} {:.2f} {:.2f}".format(*clue.acceleration) clue_data[1].text = "Gyro: {:.2f} {:.2f} {:.2f}".format(*clue.gyro) clue_data[2].text = "Magnetic: {:.3f} {:.3f} {:.3f}".format(*clue.magnetic)
get this error:
File "code.py", line 3, in <module> AttributeError: 'Clue' object has no attribute 'display_clue_data'
The text was updated successfully, but these errors were encountered:
Fixed in #5
Sorry, something went wrong.
No branches or pull requests
Tried this example: https://circuitpython.readthedocs.io/projects/clue/en/latest/api.html#adafruit_clue.Clue.simple_text_display
get this error:
The text was updated successfully, but these errors were encountered: