Skip to content

Commit e085ce3

Browse files
authored
Update Klipper Expander docs for pin callouts (#225)
* Update Klipper Expander docs for pin callouts * Update README.md
1 parent 7cb8fe3 commit e085ce3

File tree

2 files changed

+11
-8
lines changed

2 files changed

+11
-8
lines changed

Klipper_Expander/Documentation/README.md

+8-5
Original file line numberDiff line numberDiff line change
@@ -94,10 +94,11 @@ Connected to pins PA0, PA1, PA2 and PA3
9494
Example configuration:
9595
```
9696
[output_pin mosfet0]
97-
pin: PA0
97+
pin: expander:PA0
9898
value: 0
9999
shutdown_value: 0
100100
```
101+
_You may need to change `expander:` to match your expander mcu name_
101102

102103
## Thermistors (PA5, PA6)
103104

@@ -107,20 +108,21 @@ Connected to pins PA5 and PA6
107108
<img src="../Images/Thermistors.png" width="300">
108109

109110

110-
Example configuration for a standalone thermistor (Not tied to a bed or hotend)
111+
Example configuration for a standalone thermistor (Not tied to a bed or hotend):
111112
```
112113
[temperature_sensor t0]
113114
sensor_type: ThermistorType
114-
sensor_pin: PA6
115+
sensor_pin: expander:PA6
115116
gcode_id: T0
116117
```
117118

118119
```
119120
[temperature_sensor t1]
120121
sensor_type: ThermistorType
121-
sensor_pin: PA5
122+
sensor_pin: expander:PA5
122123
gcode_id: T1
123124
```
125+
_You may need to change `expander:` to match your expander mcu name_
124126

125127
## Neopixel header (PB1)
126128

@@ -131,12 +133,13 @@ Connected to J1, which has a NPV supplied voltage, GND and PB1
131133
Example configuration:
132134
```
133135
[neopixel Pixel]
134-
pin: PB1
136+
pin: expander:PB1
135137
chain_count: 1
136138
initial_RED: 0.9
137139
initial_GREEN: 0.3
138140
initial_BLUE: 0.0
139141
```
142+
_You may need to change `expander:` to match your expander mcu name_
140143

141144
# Setup
142145

Klipper_Expander/Software/klipperExpander.cfg

+3-3
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,6 @@ initial_GREEN: 0.3
4343
initial_BLUE: 0.0
4444

4545
# Other Pins
46-
# T0 = PA6
47-
# T1 = PA5
48-
# GPIO = PA7
46+
# T0 = expander:PA6
47+
# T1 = expander:PA5
48+
# GPIO = expander:PA7

0 commit comments

Comments
 (0)