first commit
This commit is contained in:
commit
c591b2c272
50 changed files with 2650 additions and 0 deletions
11
Examples/Arduboy-Tutorials/demo2/Cargo.toml
Normal file
11
Examples/Arduboy-Tutorials/demo2/Cargo.toml
Normal file
|
@ -0,0 +1,11 @@
|
|||
[package]
|
||||
name = "demo2"
|
||||
version = "0.1.0"
|
||||
authors = ["ZennDev <zenndev@protonmail.com>"]
|
||||
edition = "2021"
|
||||
|
||||
[lib]
|
||||
crate-type = ["staticlib"]
|
||||
|
||||
[dependencies]
|
||||
arduboy-rust = "1.0.0"
|
18
Examples/Arduboy-Tutorials/demo2/src/lib.rs
Normal file
18
Examples/Arduboy-Tutorials/demo2/src/lib.rs
Normal file
|
@ -0,0 +1,18 @@
|
|||
#![no_std]
|
||||
//Include the Arduboy Library
|
||||
//Initialize the arduboy object
|
||||
use arduboy_rust::prelude::*;
|
||||
//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:
|
||||
arduboy.begin();
|
||||
arduboy.clear();
|
||||
arduboy.print("Holmes is cool!\0");
|
||||
arduboy.display();
|
||||
}
|
||||
#[no_mangle]
|
||||
#[export_name = "loop"]
|
||||
pub unsafe extern "C" fn loop_() {
|
||||
// put your main code here, to run repeatedly:
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue