mirror of
https://github.com/mloy97/RedboneBackup.git
synced 2026-01-01 11:35:56 -05:00
Compare commits
11 commits
8e6816c24c
...
ba99efea87
| Author | SHA1 | Date | |
|---|---|---|---|
| ba99efea87 | |||
| d37a30fa9c | |||
| bafd20a677 | |||
| fdbdafa482 | |||
| 3d99300a0b | |||
| 9c770abc5c | |||
| 31c6ed972f | |||
| 7eb6c90383 | |||
| 5ef7c67243 | |||
| be820cac14 | |||
| a6b7018d6f |
2 changed files with 128 additions and 1 deletions
126
printer_data/config/nitehawk36.cfg
Normal file
126
printer_data/config/nitehawk36.cfg
Normal file
|
|
@ -0,0 +1,126 @@
|
|||
# This file contains pin mappings for the LDO Nitehawk-36 Toolboard
|
||||
# To use this config, the firmware should be compiled for the Raspberry Pi RP2040
|
||||
# Make sure to include this config *at the end* of printer.cfg to overwrite the relevent sections
|
||||
|
||||
# See https://docs.ldomotors.com/en/Toolboard/nitehawk-36#firmware-setup-and-update
|
||||
# For instructions on uploading/updating klipper firmware to the PCB
|
||||
|
||||
## LDO Nitehawk-SB Toolboard Partial Config
|
||||
|
||||
## *** THINGS TO CHANGE/CHECK: ***
|
||||
## MCU paths [mcu] section
|
||||
## Thermistor types [extruder] sections
|
||||
|
||||
## *MAKE SURE* to include this partial config file *AFTER* the main controller config.
|
||||
## This will ensure the relavent sections are overwritten by the pin mappings specified here.
|
||||
|
||||
[mcu nhk]
|
||||
## Obtain definition by "ls -l /dev/serial/by-id/" then unplug to verify
|
||||
##--------------------------------------------------------------------
|
||||
serial: /dev/serial/by-id/usb-Klipper_rp2040_4E363334320D3925-if00
|
||||
restart_method: command
|
||||
##--------------------------------------------------------------------
|
||||
|
||||
#####################################################################
|
||||
# Endstops
|
||||
#####################################################################
|
||||
## XES - Toolhead PCB
|
||||
[stepper_x]
|
||||
endstop_pin: nhk:gpio13
|
||||
|
||||
|
||||
#####################################################################
|
||||
# Filament Sensor
|
||||
#####################################################################
|
||||
#[filament_switch_sensor filament_sensor]
|
||||
#switch_pin: nhk:gpio3
|
||||
#pause_on_runout: True
|
||||
|
||||
#####################################################################
|
||||
# Extruder
|
||||
#####################################################################
|
||||
[extruder]
|
||||
step_pin: nhk:gpio23
|
||||
dir_pin: nhk:gpio24
|
||||
enable_pin: !nhk:gpio25
|
||||
heater_pin: nhk:gpio9
|
||||
sensor_pin: nhk:gpio29
|
||||
pullup_resistor: 2200
|
||||
|
||||
[tmc2209 extruder]
|
||||
sense_resistor: 0.100
|
||||
uart_pin: nhk:gpio0
|
||||
tx_pin: nhk:gpio1
|
||||
interpolate: false
|
||||
#run_current: #recommend setting it below 0.7A.
|
||||
|
||||
#####################################################################
|
||||
# Fans
|
||||
#####################################################################
|
||||
## PCF
|
||||
[fan]
|
||||
pin: nhk:gpio6
|
||||
|
||||
|
||||
## HEF
|
||||
[heater_fan hotend_fan]
|
||||
pin: nhk:gpio5
|
||||
tachometer_pin: nhk:gpio16
|
||||
tachometer_ppr: 2
|
||||
|
||||
#####################################################################
|
||||
# Probe
|
||||
#####################################################################
|
||||
## Probe Port
|
||||
[probe]
|
||||
pin: nhk:gpio10
|
||||
|
||||
#####################################################################
|
||||
# Lights
|
||||
#####################################################################
|
||||
##Stealthburner Headlights
|
||||
[neopixel sb_leds]
|
||||
pin: nhk:gpio7
|
||||
chain_count: 3
|
||||
color_order: GRBW
|
||||
initial_RED: 0.0
|
||||
initial_GREEN: 0.0
|
||||
initial_BLUE: 1.0
|
||||
initial_WHITE: 0.0
|
||||
|
||||
## PCB Activity Light
|
||||
[output_pin act_led]
|
||||
pin: !nhk:gpio8
|
||||
|
||||
#####################################################################
|
||||
# Accelerometer
|
||||
#####################################################################
|
||||
[adxl345]
|
||||
cs_pin: nhk:gpio27
|
||||
spi_software_sclk_pin: nhk:gpio18
|
||||
spi_software_mosi_pin: nhk:gpio20
|
||||
spi_software_miso_pin: nhk:gpio19
|
||||
|
||||
[resonance_tester]
|
||||
accel_chip: adxl345
|
||||
##--------------------------------------------------------------------
|
||||
## Uncomment below for 250mm build
|
||||
#probe_points:
|
||||
# 125, 125, 20
|
||||
|
||||
## Uncomment below for 300mm build
|
||||
#probe_points:
|
||||
# 155, 155, 20
|
||||
|
||||
## Uncomment below for 350mm build
|
||||
#probe_points:
|
||||
# 175, 175, 20
|
||||
|
||||
#####################################################################
|
||||
# Addtional Sensors
|
||||
#####################################################################
|
||||
[temperature_sensor NH36]
|
||||
sensor_type: temperature_mcu
|
||||
sensor_mcu: nhk
|
||||
min_temp: 0
|
||||
max_temp: 100
|
||||
|
|
@ -17,7 +17,7 @@
|
|||
## Z Endstop Switch location [safe_z_home] section
|
||||
## Z Endstop Switch offset for Z0 [stepper_z] section
|
||||
## PID tune [extruder] and [heater_bed] sections
|
||||
## e pin [probe] section
|
||||
## e pin [probe] section
|
||||
## Fine tune E steps [extruder] section
|
||||
|
||||
[mcu]
|
||||
|
|
@ -29,6 +29,7 @@ restart_method: command
|
|||
##--------------------------------------------------------------------
|
||||
|
||||
[include mainsail.cfg]
|
||||
[include nitehawk36.cfg]
|
||||
[include stealthburner_leds.cfg]
|
||||
[include case_lights.cfg]
|
||||
[include print_handling.cfg]
|
||||
|
|
|
|||
Loading…
Reference in a new issue