File tree Expand file tree Collapse file tree 7 files changed +247
-133
lines changed
Software/Arduino code/OpenAstroTracker Expand file tree Collapse file tree 7 files changed +247
-133
lines changed Original file line number Diff line number Diff line change 9
9
/* *
10
10
* Supported display types. Use one of these values for DISPLAY_TYPE configuration matching your used display.
11
11
*
12
- * DISPLAY_TYPE_NONE: No display. Use this if you don't use any display.
13
- * DISPLAY_TYPE_LCD_KEYPAD: 1602 LCD Keypad shield which can be mounted directly to an Arduino UNO / Mega boards.
14
- * Example: https://www.digikey.com/en/products/detail/dfrobot/DFR0009/7597118
12
+ * DISPLAY_TYPE_NONE: No display. Use this if you don't use any display.
13
+ * DISPLAY_TYPE_LCD_KEYPAD: 1602 LCD Keypad shield which can be mounted directly to an Arduino UNO / Mega boards.
14
+ * Example: https://www.digikey.com/en/products/detail/dfrobot/DFR0009/7597118
15
+ * DISPLAY_TYPE_LCD_KEYPAD_I2C_MCP23008: RGB LCD Keypad shield based on the MCP23008 I/O Expander. It can be mounted
16
+ * directly to an Arduino UNO / Mega boards and controlled over I2C.
17
+ * DISPLAY_TYPE_LCD_KEYPAD_I2C_MCP23017: RGB LCD Keypad shield based on the MCP23017 I/O Expander. It can be mounted
18
+ * directly to an Arduino UNO / Mega boards and controlled over I2C.
15
19
**/
16
- #define DISPLAY_TYPE_NONE 0
17
- #define DISPLAY_TYPE_LCD_KEYPAD 1
20
+ #define DISPLAY_TYPE_NONE 0
21
+ #define DISPLAY_TYPE_LCD_KEYPAD 1
22
+ #define DISPLAY_TYPE_LCD_KEYPAD_I2C_MCP23008 2
23
+ #define DISPLAY_TYPE_LCD_KEYPAD_I2C_MCP23017 3
24
+
18
25
19
26
// Supported stepper models
20
27
#define STEPPER_TYPE_28BYJ48 0
21
28
#define STEPPER_TYPE_NEMA17 1
22
29
30
+
23
31
// Supported stepper driver models
24
32
#define DRIVER_TYPE_ULN2003 0
25
33
#define DRIVER_TYPE_GENERIC 1
Original file line number Diff line number Diff line change @@ -17,6 +17,7 @@ lib_deps =
17
17
teemuatlut/TMCStepper @ ^0.7.1
18
18
waspinator/AccelStepper @ ^1.61
19
19
arduino-libraries/LiquidCrystal @ ^1.0.7
20
+ lincomatic/LiquidTWI2@^1.2.7
20
21
21
22
[env]
22
23
framework = arduino
You can’t perform that action at this time.
0 commit comments