Skip to content

Commit

Permalink
Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
AzonInc committed Sep 22, 2024
1 parent 52c2277 commit b76cd1c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion components/tc_bus/tc_bus.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -332,7 +332,7 @@ namespace esphome

for (std::size_t i = 0; i < eeprom_buffer_.size(); ++i)
{
uint8_t byte = data[i];
uint8_t byte = eeprom_buffer_[i];
hexString[2 * i] = hexChars[(byte >> 4) & 0xF];
hexString[2 * i + 1] = hexChars[byte & 0xF];
}
Expand Down

0 comments on commit b76cd1c

Please sign in to comment.