semi-working snake game

This commit is contained in:
2025-09-19 13:08:16 -06:00
parent 2012e68995
commit d00e644100
14 changed files with 252 additions and 40 deletions

View File

@@ -15,10 +15,10 @@ use embedded_graphics::{
text::Text,
};
use embedded_layout::{
align::{horizontal, vertical},
View,
align::{Align, horizontal, vertical},
layout::linear::LinearLayout,
object_chain::Chain,
prelude::*,
prelude::Chain,
};
#[panic_handler]
@@ -37,7 +37,7 @@ pub extern "Rust" fn _start() {
}
pub fn main() {
print("Starting Async Calculator app");
print("Starting Calculator app");
let mut display = Display;
let mut input = vec!['e', 'x', 'p', 'r', ':', ' '];