Skip to content

Commit 82224c5

Browse files
Merge remote-tracking branch 'origin/develop' into rename-headless-to-display-type
2 parents c1a689d + afe448e commit 82224c5

File tree

7 files changed

+247
-133
lines changed

7 files changed

+247
-133
lines changed

Software/Arduino code/OpenAstroTracker/Constants.hpp

Lines changed: 13 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -9,17 +9,25 @@
99
/**
1010
* Supported display types. Use one of these values for DISPLAY_TYPE configuration matching your used display.
1111
*
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.
1519
**/
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+
1825

1926
// Supported stepper models
2027
#define STEPPER_TYPE_28BYJ48 0
2128
#define STEPPER_TYPE_NEMA17 1
2229

30+
2331
// Supported stepper driver models
2432
#define DRIVER_TYPE_ULN2003 0
2533
#define DRIVER_TYPE_GENERIC 1

Software/Arduino code/OpenAstroTracker/platformio.ini

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ lib_deps =
1717
teemuatlut/TMCStepper @ ^0.7.1
1818
waspinator/AccelStepper @ ^1.61
1919
arduino-libraries/LiquidCrystal @ ^1.0.7
20+
lincomatic/LiquidTWI2@^1.2.7
2021

2122
[env]
2223
framework = arduino

0 commit comments

Comments
 (0)