Skip to content

Commit

Permalink
Test
Browse files Browse the repository at this point in the history
  • Loading branch information
AzonInc committed Feb 1, 2025
1 parent c2eef2e commit cd0b542
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions components/tc_bus/tc_bus.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -656,10 +656,10 @@ namespace esphome
}
}

dst->mark(checksm ? TCS_ONE_BIT_MS : TCS_ZERO_BIT_MS);
ESP_LOGD(TAG, "mark %i", checksm ? TCS_ONE_BIT_MS : TCS_ZERO_BIT_MS);
dst->space(0);
ESP_LOGD(TAG, "space %i", 0);
dst->space(checksm ? TCS_ONE_BIT_MS : TCS_ZERO_BIT_MS);
ESP_LOGD(TAG, "space %i", checksm ? TCS_ONE_BIT_MS : TCS_ZERO_BIT_MS);
dst->mark(0);
ESP_LOGD(TAG, "mark %i", 0);

call.perform();
ESP_LOGD(TAG, "perform");
Expand Down

0 comments on commit cd0b542

Please sign in to comment.