-
Notifications
You must be signed in to change notification settings - Fork 584
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Add IRC03 IR Blaster * add picture --------- Co-authored-by: Samuel Sieb <[email protected]>
- Loading branch information
Showing
2 changed files
with
65 additions
and
0 deletions.
There are no files selected for viewing
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,65 @@ | ||
--- | ||
title: Tuya Generic IRC03 IR Blaster | ||
date-published: 2025-01-04 | ||
type: misc | ||
standard: global | ||
board: bk72xx | ||
--- | ||
|
||
## General Notes | ||
|
||
There's detailed teardown info at [Elektroda](https://www.elektroda.com/rtvforum/topic4012905.html). | ||
|
||
![IRC03](IRC03.jpg) | ||
|
||
## GPIO Pinout | ||
|
||
| Pin | Function | | ||
| --- | ------------- | | ||
| P7 | IR Transmitter| | ||
| P8 | IR Receiver | | ||
| P9 | Button | | ||
| P24 | LED | | ||
|
||
## Flashing | ||
|
||
I used ``ltchiptool`` to backup the original firmware and flash an esphome uf2 binary to it. | ||
The pads are all nicely labeled. | ||
|
||
## Configuration | ||
|
||
```yaml | ||
bk72xx: | ||
board: generic-bk7231n-qfn32-tuya | ||
|
||
output: | ||
- platform: libretiny_pwm | ||
id: led | ||
pin: 24 | ||
|
||
light: | ||
- platform: monochromatic | ||
name: LED | ||
output: led | ||
|
||
binary_sensor: | ||
- platform: gpio | ||
id: btn | ||
pin: | ||
number: 9 | ||
mode: input_pullup | ||
inverted: true | ||
|
||
remote_transmitter: | ||
pin: 7 | ||
carrier_duty_percent: 50% | ||
|
||
remote_receiver: | ||
pin: | ||
number: 8 | ||
inverted: true | ||
mode: | ||
input: true | ||
pullup: true | ||
tolerance: 55% | ||
``` |