fixed typo
This commit is contained in:
parent
cf21233415
commit
7807207f45
1 changed files with 3 additions and 3 deletions
|
@ -31,13 +31,13 @@ pub unsafe extern "C" fn loop_() {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
if serial::available() > 0 {
|
if serial::available() > 0 {
|
||||||
let intcoming_byte = serial::read_as_utf8_str();
|
let incoming_byte = serial::read_as_utf8_str();
|
||||||
serial::print("I received: \0");
|
serial::print("I received: \0");
|
||||||
|
|
||||||
serial::println(intcoming_byte);
|
serial::println(incoming_byte);
|
||||||
}
|
}
|
||||||
if arduboy.pressed(A) {
|
if arduboy.pressed(A) {
|
||||||
serial::println("kekw")
|
serial::println("kekw\0")
|
||||||
}
|
}
|
||||||
|
|
||||||
arduboy.display();
|
arduboy.display();
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue