Releases: rust-embedded-community/rust-measurements
Releases · rust-embedded-community/rust-measurements
Release 0.11.0
Release 0.10.4
Adds Serde support.
There's now a feature flag to add Serialize and Deserialize attributes to all of the measurements. Thanks to @alberdingk-thijm.
More range, captain!
Merged in #17 to add:
- nanoamps
- microwatts
- milliwatts
- microvolts
Fixed the tests
The tests now work correctly after the #[no-std]
move.
#[no_std] support
Now builds for #[no_std]
targets.
Current and Resistance
Adds:
- Electrical Current (in Amps)
- Electrical Resistance (in Ohms)
- Corresponding updates to Power and Voltage
Adds Voltage
Added the Voltage type, in Volts.
Use the `time` crate
Uses the time
crate, to avoid std::time
(which isn't available with #[no_std]
).
More units...
Adds:
- Angles
- Angular Velocity
- Area
- Data (bytes, etc)
- Force
- Frequency
- Mass
- Metric Horsepower (PS)
Changed Pressure to be in Pascals. Also add a bunch of tests and doc fixes.