Skip to content
Merged
Changes from 1 commit
Commits
Show all changes
32 commits
Select commit Hold shift + click to select a range
7e9ddf7
Add CC1101 docs
lygris Nov 13, 2025
e94a724
lint fixes
lygris Nov 13, 2025
193427e
More lint fixes
lygris Nov 13, 2025
db07657
final lint fixes
lygris Nov 13, 2025
ae1a4e5
fix img to be standard html
lygris Nov 13, 2025
88c3871
update with settings name changes
lygris Nov 15, 2025
bcdd7d6
Update Docs to match latest commit.
lygris Nov 15, 2025
623264f
Requested Fixes
lygris Nov 19, 2025
39f3e19
missed these ones
lygris Nov 19, 2025
8d07632
lint fixes
lygris Nov 19, 2025
8059126
moar lint fixes
lygris Nov 19, 2025
f6a156c
add begin/end tx actions to examples
lygris Nov 19, 2025
9488c62
Remove some commented lines and fix lint error
lygris Nov 19, 2025
b9d07e6
Fix transmitter config example
lygris Nov 19, 2025
7d0f999
Fix image link
lygris Nov 19, 2025
95de05c
actually fix image link
lygris Nov 19, 2025
2723afa
Add missing Idle action description.
lygris Nov 19, 2025
5506883
Update for new code commit
lygris Nov 19, 2025
282a759
lint fixes
lygris Nov 20, 2025
b92f78a
Update to match latest component config
lygris Nov 21, 2025
be2fe85
lint fixes
lygris Nov 21, 2025
919901d
Merge branch 'next' into cc1101-docs
swoboda1337 Nov 25, 2025
343b0f6
fix links
lygris Nov 25, 2025
bdc9805
Clean up
swoboda1337 Dec 3, 2025
1a6b140
Fix
swoboda1337 Dec 3, 2025
ae9be5d
Clean up
swoboda1337 Dec 3, 2025
8198129
Clean up
swoboda1337 Dec 3, 2025
060c8a4
Clean up
swoboda1337 Dec 3, 2025
ee7d637
Add detail
swoboda1337 Dec 3, 2025
c8485ce
Add detail
swoboda1337 Dec 3, 2025
f4fabc6
Add detail
swoboda1337 Dec 3, 2025
cf8812d
Clean up
swoboda1337 Dec 3, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
47 changes: 42 additions & 5 deletions content/components/cc1101.md
Original file line number Diff line number Diff line change
Expand Up @@ -105,14 +105,36 @@ button:
Wire **GDO0** to a single GPIO and use it for both TX and RX.
```yaml
cc1101:
gdo0_pin: GPIOXX # CC1101 GDO0
gdo0_pin:
pin:
number: GPIOXX # CC1101 GDO0
mode:
input: true
output: true
pullup: true
open_drain: true
allow_other_uses: true

remote_transmitter:
pin: GPIOXX # Must match GDO0
pin:
number: GPIOXX # Must match GDO0
mode:
input: true
output: true
pullup: true
open_drain: true
allow_other_uses: true
carrier_duty_percent: 100%

remote_receiver:
pin: GPIOXX # CC1101 GDO0
pin:
number: GPIOXX # Must match GDO0
mode:
input: true
output: true
pullup: true
open_drain: true
allow_other_uses: true
dump: all
```

Expand All @@ -123,10 +145,25 @@ remote_receiver:

```yaml
cc1101:
gdo0_pin: GPIOXX # CC1101 GDO0
gdo0_pin:
pin:
number: GPIOXX # Must match GDO0
mode:
input: true
output: true
pullup: true
open_drain: true
allow_other_uses: true

remote_transmitter:
pin: GPIOXX # Must match GDO0
pin:
number: GPIOXX # Must match GDO0
mode:
input: true
output: true
pullup: true
open_drain: true
allow_other_uses: true
carrier_duty_percent: 100%

remote_receiver:
Expand Down
Loading