| 8 | |
| 9 | struct IRCode { |
| 10 | IRCode( |
| 11 | String protocol = "", String address = "", String command = "", String data = "", uint8_t bits = 32 |
| 12 | ) |
| 13 | : protocol(protocol), address(address), command(command), data(data), bits(bits) {} |
| 14 | |
| 15 | IRCode(IRCode *code) { |
| 16 | name = String(code->name); |
nothing calls this directly
no outgoing calls
no test coverage detected