generated from Avi-73/Avi_73J_template
-
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
1 parent
a61d529
commit 36035dd
Showing
6 changed files
with
53 additions
and
19 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,4 @@ | ||
#pragma once | ||
#ifndef PID_H | ||
#define PID_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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
#pragma once | ||
#include <Arduino.h> | ||
|
||
class dataLog{ | ||
|
||
} |
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,20 @@ | ||
#pragma once | ||
namespace PIN { | ||
const uint8_t R_ENC_A = 4; // ロール方向のエンコーダーのピン | ||
const uint8_t R_ENCB = 16; | ||
const uint8_t R_PWM_CW = 19; | ||
const uint8_t R_PWM_CCW = 18; | ||
const uint8_t P_ENC_A = 21; // ピッチ方向のエンコーダーのピン | ||
const uint8_t P_ENCB = 22; | ||
const uint8_t P_PWM_CW = 2; | ||
const uint8_t P_PWM_CCW = 13; | ||
const uint8_t MISO = 33; | ||
const uint8_t MOSI = 26; | ||
const uint8_t CLK = 25; | ||
const uint8_t ICMCS = 27; | ||
const uint8_t FLASHCS = 23; | ||
const uint8_t RTD_TX = 32; | ||
const uint8_t RTD_RX = 36; | ||
const uint8_t CAM_TX = 14; | ||
const uint8_t CAM_RX = 39; | ||
} // namespace PIN |
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