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
Not really an issue, just a potential option.
Currently the temperature property is marked as deprecated to deal with the feature being removed from the chip. See #30 and #32.
temperature
Another approach might be to query the version information registers: and then raise exception if a newer rev:
if version > THE_LAST_VERSION_THAT_HAD_TEMPERATURE: raise RuntimeError("Feature not supported for this chip version")
The text was updated successfully, but these errors were encountered:
v2 is what dropped it, but i dont think its wise to use the temp sensor at all...then that code wouldn't be usable by others
Sorry, something went wrong.
okie dokie. works for me.
No branches or pull requests
Not really an issue, just a potential option.
Currently the
temperature
property is marked as deprecated to deal with the feature being removed from the chip. See #30 and #32.Another approach might be to query the version information registers:

and then raise exception if a newer rev:
The text was updated successfully, but these errors were encountered: