项目初始化, 串口服务类别

This commit is contained in:
jie
2024-07-06 03:28:33 +08:00
commit 004d9b032f
13 changed files with 978 additions and 0 deletions

8
src/main.rs Normal file
View File

@@ -0,0 +1,8 @@
use fltk::{prelude::*, window::Window, *};
fn main() {
let app = app::App::default();
let mut window = window::Window::new(100, 100, 400, 300, "Hello from rust");
window.end();
window.show();
app.run().unwrap();
}