Skip to content
This repository was archived by the owner on Jul 9, 2020. It is now read-only.

Commit c399f76

Browse files
sdavisdavi
authored andcommitted
Add example board config for BIQU SKRv1.3
1 parent 7c9eb5d commit c399f76

File tree

1 file changed

+52
-0
lines changed

1 file changed

+52
-0
lines changed
Lines changed: 52 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,52 @@
1+
2+
3+
stepper.enablePins = {2.1, 2.8, 0.21, 2.12, 0.10};
4+
stepper.stepPins = {2.2, 0.19, 0.22, 2.13, 0.1};
5+
stepper.directionPins = {2.6, 0.20, 2.11, 0.11, 0.0};
6+
stepper.hasDriverCurrentControl = false;
7+
8+
//1.29 X-
9+
//1.28 X+
10+
//1.27 Y-
11+
//1.26 Y+
12+
//1.25 Z-
13+
//1.24 Z+
14+
endstop.pins = {1.29, 1.27, 1.25}; //X, Y, Z Endstops
15+
16+
// Bed E0 E1
17+
heat.tempSensePins = {0.23, 0.24, 0.25}; //tb, th0, th1
18+
heat.heatOnPins = {2.5, 2.7, 2.4}; //hbed, he0, he1
19+
20+
fan.pins = {2.3}; //cooling fan
21+
22+
lpc.slowPWM.pins = {2.5};
23+
lpc.slowPWM.frequencyHz = 10; //10Hz (for Bed PWM)
24+
lpc.fastPWM.pins = {2.7, 2.4};
25+
lpc.fastPWM.frequencyHz = 250; //250Hz (for Hotend/Fan PWM)
26+
27+
lpc.servoPins = {2.0};
28+
specialPinMap = {2.0};
29+
30+
externalSDCard.csPin = 0.16;
31+
externalSDCard.cardDetectPin = 1.31;
32+
33+
lpc.externalSDCard.spiFrequencyHz = 4000000;
34+
lpc.externalSDCard.spiChannel = 0;
35+
36+
37+
38+
39+
40+
//LCD Pins (only ST9720 SPI currently supported)
41+
42+
//setup the Software SPI Pins for LCD
43+
lpc.softwareSPI.pins = {1.20, NoPin, 1.18}; //Set to GPIO pins to use as SCK, MISO, MOSI
44+
45+
lcd.spiChannel = 2; //2 = SWSPI - Use Software SPI Channel
46+
lcd.lcdCSPin = 1.19; //LCD Chip Select
47+
lcd.lcdBeepPin = 1.30;
48+
lcd.encoderPinA = 3.26;
49+
lcd.encoderPinB = 3.25;
50+
lcd.encoderPinSw = 0.28; //click
51+
lcd.lcdDCPin = NoPin; //DataControl Pin (A0) if none used set to NoPin
52+
lcd.panelButtonPin = NoPin;

0 commit comments

Comments
 (0)