-
Notifications
You must be signed in to change notification settings - Fork 0
/
pins.h
61 lines (40 loc) · 974 Bytes
/
pins.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
#ifndef PINS_H
#define PINS_H
#define X_STEP_PIN 25
#define X_DIR_PIN 23
#define X_MIN_PIN 22
#define X_MAX_PIN 24
#define X_ENABLE_PIN 27
#define Y_STEP_PIN 31
#define Y_DIR_PIN 33
#define Y_MIN_PIN 26
#define Y_MAX_PIN 28
#define Y_ENABLE_PIN 29
//#define Z_STEP_PIN 37
//#define Z_DIR_PIN 39
//#define Z_ENABLE_PIN 35
#define Z_ENABLE_P 19
#define Z_ENABLE_GND 20
#define Z_STEP_P 21
#define Z_STEP_GND 6
#define Z_DIR_P 5
#define Z_DIR_GND 18
#define Z_MIN_PIN 32
#define Z_MAX_PIN 30
#define O19V_ENABLE_PIN 2
#define HEAD_SERVO_PIN 38
#define ENABLE_LC1_PIN 51
#define ENABLE_LC2_PIN 40
#define ENABLE_ANALOG_PIN 53
#define ENABLE_SERVO_PIN 42
#define START_ACQ_PIN 52
#define CONTACT_PIN 50
#define LC_ANALOG_PIN 8
#define PUMP_ENABLE_PIN 3
#define E0_STEP_PIN 43
#define E0_DIR_PIN 45
#define E0_ENABLE_PIN 41
#define FAN_PIN 7
#define PS_ON_PIN 12
#define SUICIDE_PIN 54
#endif