#[unsafe(no_mangle)]pub unsafe extern "C" fn pamoja_sht3x_measurement_bytes(
temperature_raw: u16,
humidity_raw: u16,
out_bytes: *mut u8,
) -> PamojaStatusExpand description
Builds the six bytes an SHT3x sends for a pair of raw words.
§Returns
PamojaStatus::Ok on success, with the six bytes written to out_bytes, or
PamojaStatus::InvalidArgument if out_bytes is null.
§Safety
out_bytes must point to at least six writable bytes.