button testing
This commit is contained in:
parent
60ffa7635d
commit
17642f5c51
1 changed files with 65 additions and 4 deletions
|
@ -7,8 +7,8 @@ const int PIN_F = 26;
|
||||||
|
|
||||||
const int PIN_MOUSE_UL = 27;
|
const int PIN_MOUSE_UL = 27;
|
||||||
const int PIN_MOUSE_UR = 30;
|
const int PIN_MOUSE_UR = 30;
|
||||||
const int PIN_MOUSE_DL = 29;
|
const int PIN_MOUSE_DL = 28;
|
||||||
const int PIN_MOUSE_DR = 28;
|
const int PIN_MOUSE_DR = 29;
|
||||||
|
|
||||||
const int PIN_LED1 = 6;
|
const int PIN_LED1 = 6;
|
||||||
const int PIN_LED2 = 1;
|
const int PIN_LED2 = 1;
|
||||||
|
@ -18,10 +18,71 @@ const int PIN_BALL_SDA = 18;
|
||||||
const int PIN_BALL_SCL = 19;
|
const int PIN_BALL_SCL = 19;
|
||||||
const int PIN_BALL_INT = 11;
|
const int PIN_BALL_INT = 11;
|
||||||
|
|
||||||
|
bool button_a = false;
|
||||||
|
bool button_b = false;
|
||||||
|
bool button_c = false;
|
||||||
|
bool button_d = false;
|
||||||
|
bool button_e = false;
|
||||||
|
bool button_f = false;
|
||||||
|
|
||||||
|
bool button_mouse_ul = false;
|
||||||
|
bool button_mouse_ur = false;
|
||||||
|
bool button_mouse_dl = false;
|
||||||
|
bool button_mouse_dr = false;
|
||||||
|
|
||||||
void setup() {
|
void setup() {
|
||||||
|
pinMode(PIN_A, INPUT_PULLUP);
|
||||||
|
pinMode(PIN_B, INPUT_PULLUP);
|
||||||
|
pinMode(PIN_C, INPUT_PULLUP);
|
||||||
|
pinMode(PIN_D, INPUT_PULLUP);
|
||||||
|
pinMode(PIN_E, INPUT_PULLUP);
|
||||||
|
pinMode(PIN_F, INPUT_PULLUP);
|
||||||
|
|
||||||
|
pinMode(PIN_MOUSE_UL, INPUT_PULLUP);
|
||||||
|
pinMode(PIN_MOUSE_UR, INPUT_PULLUP);
|
||||||
|
pinMode(PIN_MOUSE_DL, INPUT_PULLUP);
|
||||||
|
pinMode(PIN_MOUSE_DR, INPUT_PULLUP);
|
||||||
|
|
||||||
|
pinMode(PIN_LED1, OUTPUT);
|
||||||
|
pinMode(PIN_LED2, OUTPUT);
|
||||||
|
pinMode(PIN_LED3, OUTPUT);
|
||||||
|
|
||||||
|
Serial.begin(115200);
|
||||||
|
Serial.println("helo");
|
||||||
}
|
}
|
||||||
|
|
||||||
void loop() {
|
void loop() {
|
||||||
|
button_a = digitalRead(PIN_A);
|
||||||
|
button_b = digitalRead(PIN_B);
|
||||||
|
button_c = digitalRead(PIN_C);
|
||||||
|
button_d = digitalRead(PIN_D);
|
||||||
|
button_e = digitalRead(PIN_E);
|
||||||
|
button_f = digitalRead(PIN_F);
|
||||||
|
|
||||||
|
button_mouse_ul = digitalRead(PIN_MOUSE_UL);
|
||||||
|
button_mouse_ur = digitalRead(PIN_MOUSE_UR);
|
||||||
|
button_mouse_dl = digitalRead(PIN_MOUSE_DL);
|
||||||
|
button_mouse_dr = digitalRead(PIN_MOUSE_DR);
|
||||||
|
|
||||||
|
Serial.print(button_a);
|
||||||
|
Serial.print(',');
|
||||||
|
Serial.print(button_b);
|
||||||
|
Serial.print(',');
|
||||||
|
Serial.print(button_c);
|
||||||
|
Serial.print(',');
|
||||||
|
Serial.print(button_d);
|
||||||
|
Serial.print(',');
|
||||||
|
Serial.print(button_e);
|
||||||
|
Serial.print(',');
|
||||||
|
Serial.print(button_f);
|
||||||
|
Serial.print(" - ");
|
||||||
|
Serial.print(button_mouse_ul);
|
||||||
|
Serial.print(',');
|
||||||
|
Serial.print(button_mouse_ur);
|
||||||
|
Serial.print(',');
|
||||||
|
Serial.print(button_mouse_dl);
|
||||||
|
Serial.print(',');
|
||||||
|
Serial.println(button_mouse_dr);
|
||||||
|
|
||||||
|
delay(250);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue