From 29cb184a13a1148f249ea9aae2c4c7e217f59185 Mon Sep 17 00:00:00 2001 From: Hideaki Tai Date: Sat, 2 Jan 2021 16:41:45 +0900 Subject: [PATCH] remove const for phy --- Artnet.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Artnet.h b/Artnet.h index 1cdf926..5a83fcc 100644 --- a/Artnet.h +++ b/Artnet.h @@ -234,7 +234,7 @@ namespace arx { send_packet(ip); } - void physical(const uint8_t i) const { phy = constrain(i, 0, 3); } + void physical(const uint8_t i) { phy = constrain(i, 0, 3); } uint8_t sequence() const { return seq; }