[go: nahoru, domu]

Skip to content

Commit

Permalink
Update
Browse files Browse the repository at this point in the history
  • Loading branch information
vlad0x00 committed May 17, 2024
1 parent e09a9b0 commit 395cb09
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions config.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,13 @@ constexpr inline int BLUETOOTH_INTERRUPT_PIN = 3;
// The SD card chip select pin.
constexpr inline int SD_CS_PIN = 4;

constexpr inline int BLUETOOTH_RX_PIN = 5;
constexpr inline int BLUETOOTH_TX_PIN = 6;
// Pin to receive data on from the bluetooth module. This should be
// connected to the TX pin of the module.
constexpr inline int BLUETOOTH_RX_PIN = 6;

// Pin to send data from the bluetooth module. This should be connected
// to the RX pin of the module.
constexpr inline int BLUETOOTH_TX_PIN = 5;

// The following pin might be named "EN" on the bluetooth module.
constexpr inline int BLUETOOTH_KEY_PIN = 7;
Expand Down

0 comments on commit 395cb09

Please sign in to comment.