[e131] Use uint16_t for consumer refcount

Struct pads to 4 bytes either way due to alignment, so this is free.
This commit is contained in:
J. Nick Koston
2026-02-19 00:34:20 -06:00
parent 1373f6866a
commit 76fda4d4a2

View File

@@ -24,7 +24,7 @@ struct E131Packet {
struct UniverseConsumer {
uint16_t universe;
uint8_t consumers;
uint16_t consumers;
};
class E131Component : public esphome::Component {