Initial Commit

This commit is contained in:
2025-11-30 03:04:45 -06:00
commit b23796fc77
18 changed files with 5349 additions and 0 deletions

15
src/lib.rs Normal file
View File

@@ -0,0 +1,15 @@
#![no_std]
pub mod init;
pub mod state;
pub mod display;
pub mod touch;
pub mod setting_screen;
pub const IIC_ADDRESS: u8 = 0x15_u8;
pub const TP_GESTURE: u8 = 0x01_u8;
pub const TP_X: u8 = 0x04_u8;
pub const TP_Y: u8 = 0x06_u8;
pub const RAD_TO_DEG: f32 = 57.2957795;
pub const DEG_TO_RAD: f32 = 0.017453293;