Skip to content

Commit

Permalink
clean up
Browse files Browse the repository at this point in the history
  • Loading branch information
ZennDev1337 committed Sep 21, 2023
1 parent 7807207 commit f4647a1
Showing 1 changed file with 0 additions and 11 deletions.
11 changes: 0 additions & 11 deletions Project/game/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,6 @@ pub unsafe extern "C" fn setup() {
arduboy.begin();
arduboy.set_frame_rate(30);
arduboy.clear();
// serial::begin(9600)
}

// The loop() function repeats forever after setup() is done
Expand All @@ -30,15 +29,5 @@ pub unsafe extern "C" fn loop_() {
if !arduboy.next_frame() {
return;
}
// if serial::available() > 0 {
// let intcoming_byte = serial::read_as_utf8_str();
// serial::print("I received: \0");

// serial::println(intcoming_byte);
// }
if arduboy.pressed(A) {
//serial::print("kekw")
}
//serial_println_chars(b"hallo\0" as *const [u8] as *const i8);
arduboy.display();
}

0 comments on commit f4647a1

Please sign in to comment.