Skip to content

Commit 28d64c0

Browse files
committed
better arduino inputs
1 parent 5097131 commit 28d64c0

File tree

2 files changed

+10
-10
lines changed

2 files changed

+10
-10
lines changed

buttons_space/buttons_space.ino

+9-9
Original file line numberDiff line numberDiff line change
@@ -31,46 +31,46 @@ void loop () {
3131
if(btup == HIGH){
3232
int btup_now = millis();
3333
if(btup_now - MIN_INTERVAL >= BT_UP_LASTPRESS){
34-
if(BT_UP_LAST_STATUS == LOW) Serial.println("1");
34+
if(BT_UP_LAST_STATUS == LOW) Serial.print("1");
3535
BT_UP_LAST_STATUS = HIGH;
36-
Serial.println("W");
36+
Serial.print("W");
3737
BT_UP_LASTPRESS = millis();
3838
}
3939
}
4040
else{
41-
if(BT_UP_LAST_STATUS == HIGH) Serial.println("0");
41+
if(BT_UP_LAST_STATUS == HIGH) Serial.print("0");
4242
BT_UP_LAST_STATUS = LOW;
4343
}
4444

4545
int btleft = digitalRead(BT_LEFT); // Read button state
4646
if(btleft == HIGH){
4747
int btleft_now = millis();
4848
if(btleft_now - MIN_INTERVAL >= BT_LEFT_LASTPRESS){
49-
if(BT_LEFT_LAST_STATUS == LOW) Serial.println("1");
49+
if(BT_LEFT_LAST_STATUS == LOW) Serial.print("1");
5050
BT_LEFT_LAST_STATUS = HIGH;
51-
Serial.println("A");
51+
Serial.print("A");
5252
BT_LEFT_LASTPRESS = millis();
5353
//Keyboard.press(KEY_LEFT_ARROW);
5454
}
5555
}
5656
else{
57-
if(BT_LEFT_LAST_STATUS == HIGH) Serial.println("0");
57+
if(BT_LEFT_LAST_STATUS == HIGH) Serial.print("0");
5858
BT_LEFT_LAST_STATUS = LOW;
5959
}
6060

6161
int btright = digitalRead(BT_RIGHT); // Read button state
6262
if(btright == HIGH){
6363
int btright_now = millis();
6464
if(btright_now - MIN_INTERVAL >= BT_RIGHT_LASTPRESS){
65-
if(BT_RIGHT_LAST_STATUS == LOW) Serial.println("1");
65+
if(BT_RIGHT_LAST_STATUS == LOW) Serial.print("1");
6666
BT_RIGHT_LAST_STATUS = HIGH;
67-
Serial.println("D");
67+
Serial.print("D");
6868
BT_RIGHT_LASTPRESS = millis();
6969
//Keyboard.press(KEY_RIGHT_ARROW);
7070
}
7171
}
7272
else{
73-
if(BT_RIGHT_LAST_STATUS == HIGH) Serial.println("0");
73+
if(BT_RIGHT_LAST_STATUS == HIGH) Serial.print("0");
7474
BT_RIGHT_LAST_STATUS = LOW;
7575
}
7676
}

multiplayer.ceu

+1-1
Original file line numberDiff line numberDiff line change
@@ -137,7 +137,7 @@ do
137137
var char lastserial = 0;
138138
loop do
139139
var char c = await SERIAL;
140-
_printf("%c\n",c);
140+
//_printf("%c\n",c);
141141
if(c != lastserial) then
142142
if(c == 'W') then
143143
_printf("BEAM\n");

0 commit comments

Comments
 (0)