MCPcopy Create free account
hub / github.com/BruceDevices/firmware / uint32ToStringInverted

Function uint32ToStringInverted

src/modules/ir/ir_read.cpp:38–50  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

36}
37
38String uint32ToStringInverted(uint32_t value) {
39 char buffer[12] = {0};
40 snprintf(
41 buffer,
42 sizeof(buffer),
43 "%02lX %02lX %02lX %02lX",
44 (value >> 24) & 0xFF,
45 (value >> 16) & 0xFF,
46 (value >> 8) & 0xFF,
47 value & 0xFF
48 );
49 return String(buffer);
50}
51
52IrRead::IrRead(bool headless_mode, bool raw_mode) {
53 headless = headless_mode;

Callers 1

append_to_file_strMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected