Cargo Features
Simmer has no features set by default.
[dependencies]
simmer = { version = "0.3.0", features = ["f32", "checked", "arbitrary"] }
- default
-
/// Includes the default
f64
type for internal + exported values. - f32
-
/// Use
f32
instead off64
for temperatures. This can help when working with devices that don't /// supportf64
, including some Arduino boards. - checked
-
/// Enable the
CheckedTemperature
type. Less performant, but limits temps to reality.Affects
simmer::checked
…