-
Notifications
You must be signed in to change notification settings - Fork 0
/
pins.h
90 lines (71 loc) · 1.47 KB
/
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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
/*
* This file is part of brewflow.
*
* brewflow is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* brewflow is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with brewflow. If not, see <http://www.gnu.org/licenses/>.
*/
#pragma once
#ifndef PUMP1CTRLPIN
#define PUMP1CTRLPIN 4
#endif
#ifndef PUMP1PWMPIN
#define PUMP1PWMPIN 5
#endif
#ifndef PUMP2CTRLPIN
#define PUMP2CTRLPIN 7
#endif
#ifndef PUMP2PWMPIN
#define PUMP2PWMPIN 6
#endif
#ifndef HEATCTRLPIN
#define HEATCTRLPIN 9
#endif
#ifndef LCD_DB4
#define LCD_DB4 8
#endif
#ifndef LCD_DB5
#define LCD_DB5 2
#endif
#ifndef LCD_DB6
#define LCD_DB6 10
#endif
#ifndef LCD_DB7
#define LCD_DB7 11
#endif
#ifndef LCD_RS
#define LCD_RS 12
#endif
#ifndef LCD_EN
#define LCD_EN 13
#endif
#ifndef KPAD_AN
#define KPAD_AN 0
#endif
#ifndef btnRIGHT
#define btnRIGHT 0
#endif
#ifndef btnUP
#define btnUP 1
#endif
#ifndef btnDOWN
#define btnDOWN 2
#endif
#ifndef btnLEFT
#define btnLEFT 3
#endif
#ifndef btnSELECT
#define btnSELECT 4
#endif
#ifndef btnNONE
#define btnNONE 5
#endif