added all Sprite functions

This commit is contained in:
ZennCode 2023-08-10 13:17:18 +02:00
parent 2287869945
commit 251491e4e6
4 changed files with 57 additions and 5 deletions

View file

@ -6,7 +6,6 @@
use arduboy_rust::prelude::*;
// Progmem data
//#[link_section = ".progmem.data"]
// dynamic ram variables
@ -14,10 +13,6 @@ use arduboy_rust::prelude::*;
#[no_mangle]
pub unsafe extern "C" fn setup() {
// put your setup code here, to run once:
arduboy.begin();
arduboy.clear();
arduboy.print(f!(b"hello boys\0"));
arduboy.display();
}
// The loop() function repeats forever after setup() is done