now sending chars yay

This commit is contained in:
Yehowshua Immanuel 2024-12-24 18:34:47 -05:00
parent f992a24719
commit e08c673e86
5 changed files with 9 additions and 10 deletions

View file

@ -71,7 +71,7 @@ fn send_char(
let send_c = c.clone();
Task::start(async move {
println!("Sending char: {}", &c);
crate::platform::send_char().await;
crate::platform::send_char(send_c.to_string()).await;
// crate::platform::unload_signal().await;
println!("Sent char: {}", &c);
});