forked from GeorgeHahn-Lab651/sensei_mesh
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
14 changed files
with
129 additions
and
37 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
#ifndef BOARD_LESSON_TRACKER_H | ||
#define BOARD_LESSON_TRACKER_H | ||
|
||
#ifdef __cplusplus | ||
extern "C" { | ||
#endif | ||
|
||
#define SIMBLEE | ||
|
||
#define LEDS_NUMBER 0 | ||
#define BUTTONS_NUMBER 0 | ||
|
||
#define RX_PIN_NUMBER 0 | ||
#define TX_PIN_NUMBER 1 | ||
//#define CTS_PIN_NUMBER 0xff | ||
//#define RTS_PIN_NUMBER 0xff | ||
#define HWFC false | ||
|
||
#ifdef __cplusplus | ||
} | ||
#endif | ||
|
||
#endif //BOARD_LESSON_TRACKER_H |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
|
||
|
||
#ifndef SHOE_SENSOR_H | ||
#define SHOE_SENSOR_H | ||
|
||
#ifdef __cplusplus | ||
extern "C" { | ||
#endif | ||
|
||
#define ACCEL_ADXL337 | ||
#define SIMBLEE | ||
|
||
// LEDs definitions for Sensei shoe sensor board | ||
#define LEDS_NUMBER 0 | ||
#define BUTTONS_NUMBER 0 | ||
|
||
|
||
#define BUTTONS_LIST { BUTTON_1, BUTTON_2 } | ||
|
||
#define BSP_BUTTON_0 BUTTON_1 | ||
#define BSP_BUTTON_1 BUTTON_2 | ||
|
||
#define BSP_BUTTON_0_MASK (1<<BSP_BUTTON_0) | ||
#define BSP_BUTTON_1_MASK (1<<BSP_BUTTON_1) | ||
|
||
#define BUTTONS_MASK (BSP_BUTTON_0_MASK | BSP_BUTTON_1_MASK ) | ||
|
||
#define RX_PIN_NUMBER 0 | ||
#define TX_PIN_NUMBER 1 | ||
//#define CTS_PIN_NUMBER 0xff | ||
//#define RTS_PIN_NUMBER 0xff | ||
#define HWFC false | ||
|
||
#ifdef __cplusplus | ||
} | ||
#endif | ||
|
||
#endif // SHOE_SENSOR_H |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters