15 lines
312 B
Rust
15 lines
312 B
Rust
#![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; |