Skip to content

Commit

Permalink
Change to remove depricated functionality
Browse files Browse the repository at this point in the history
  • Loading branch information
MartinMueller2003 committed Oct 2, 2024
1 parent cb1e4d0 commit dededf8
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion ESPixelStick/src/output/OutputServoPCA9685.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -172,8 +172,9 @@ bool c_OutputServoPCA9685::SetConfig (ArduinoJson::JsonObject & jsonConfig)
break;
}

for (JsonVariant JsonChannelData : JsonChannelList)
for (JsonVariant ChannelData : JsonChannelList)
{
JsonObject JsonChannelData = ChannelData.as<JsonObject>();
uint8_t ChannelId = OM_SERVO_PCA9685_CHANNEL_LIMIT;
setFromJSON (ChannelId, JsonChannelData, OM_SERVO_PCA9685_CHANNEL_ID_NAME);

Expand Down

0 comments on commit dededf8

Please sign in to comment.