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
We should report sensor info, up to 255 of them. Just like the other APIs.
Neotron Pico BIOS can provide:
Each value should be of an enum representing the units, and which holds a u32 or similar. This type can then impl Display for printing.
Kind::Voltage(u32) might print as xx.yyy V and be stored in units of 1/1000 Volt.
xx.yyy V
Kind::Temperature(u32) prints xx.y °C but is stored in units of 1/100 Kelvin.
xx.y °C
Kind::RawHex(u32) prints 0xXXXXXXXX
0xXXXXXXXX
Kind::Percent(u8) prints as xxx %
xxx %
etc
Each sensor also has a human readable name.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
We should report sensor info, up to 255 of them. Just like the other APIs.
Neotron Pico BIOS can provide:
Each value should be of an enum representing the units, and which holds a u32 or similar. This type can then impl Display for printing.
Kind::Voltage(u32) might print as
xx.yyy V
and be stored in units of 1/1000 Volt.Kind::Temperature(u32) prints
xx.y °C
but is stored in units of 1/100 Kelvin.Kind::RawHex(u32) prints
0xXXXXXXXX
Kind::Percent(u8) prints as
xxx %
etc
Each sensor also has a human readable name.
The text was updated successfully, but these errors were encountered: