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
There's currently no public method to set the thermocouple type, this can be worked around with calls directly into i2cdevice.
For example, here's how we might set the type to 'R':
from mcp9600 import MCP9600 mcp9600 = MCP9600() mcp9600._mcp9600.set('THERMOCOUPLE_CONFIG', type_select='R')
This should really be something like:
mcp9600.set_thermocouple_type('R')
The text was updated successfully, but these errors were encountered:
Merge pull request #5 from pimoroni/devel
3f93f03
Add set/get thermocouple type for #3 + packaging upgrades
Gadgetoid
No branches or pull requests
There's currently no public method to set the thermocouple type, this can be worked around with calls directly into i2cdevice.
For example, here's how we might set the type to 'R':
This should really be something like:
The text was updated successfully, but these errors were encountered: