2023-08-06 18:14:49 +02:00
|
|
|
#![no_std]
|
|
|
|
#![allow(non_upper_case_globals)]
|
2023-08-07 16:28:11 +02:00
|
|
|
|
2023-08-06 18:14:49 +02:00
|
|
|
//Include the Arduboy Library
|
|
|
|
#[allow(unused_imports)]
|
|
|
|
use arduboy_rust::prelude::*;
|
2023-09-18 18:59:50 +02:00
|
|
|
|
2023-08-15 12:42:57 +02:00
|
|
|
#[allow(dead_code)]
|
|
|
|
const arduboy: Arduboy2 = Arduboy2::new();
|
2023-08-06 18:14:49 +02:00
|
|
|
|
2023-08-07 18:17:52 +02:00
|
|
|
// Progmem data
|
|
|
|
|
|
|
|
// dynamic ram variables
|
2023-08-06 18:14:49 +02:00
|
|
|
|
|
|
|
// The setup() function runs once when you turn your Arduboy on
|
|
|
|
#[no_mangle]
|
|
|
|
pub unsafe extern "C" fn setup() {
|
|
|
|
// put your setup code here, to run once:
|
2023-09-04 09:22:04 +02:00
|
|
|
arduboy.begin();
|
2023-09-12 18:52:18 +02:00
|
|
|
arduboy.set_frame_rate(30);
|
2023-09-12 19:06:18 +02:00
|
|
|
arduboy.clear();
|
2023-09-20 21:34:21 +02:00
|
|
|
// serial::begin(9600)
|
2023-08-06 18:14:49 +02:00
|
|
|
}
|
2023-08-07 18:17:52 +02:00
|
|
|
|
2023-08-06 18:14:49 +02:00
|
|
|
// The loop() function repeats forever after setup() is done
|
|
|
|
#[no_mangle]
|
|
|
|
#[export_name = "loop"]
|
|
|
|
pub unsafe extern "C" fn loop_() {
|
|
|
|
// put your main code here, to run repeatedly:
|
2023-09-04 09:22:04 +02:00
|
|
|
if !arduboy.next_frame() {
|
|
|
|
return;
|
|
|
|
}
|
2023-09-20 21:34:21 +02:00
|
|
|
// 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")
|
|
|
|
}
|
2023-09-20 16:39:36 +02:00
|
|
|
//serial_println_chars(b"hallo\0" as *const [u8] as *const i8);
|
2023-09-04 09:22:04 +02:00
|
|
|
arduboy.display();
|
2023-08-06 18:14:49 +02:00
|
|
|
}
|