| Crates.io | owo-skin-rs |
| lib.rs | owo-skin-rs |
| version | 1.0.0 |
| created_at | 2025-04-13 13:22:47.913713+00 |
| updated_at | 2025-04-25 09:34:25.786564+00 |
| description | A Rust library for controlling the OWO skin |
| homepage | |
| repository | https://github.com/MrMineO5/owo-skin-rs |
| max_upload_size | |
| id | 1631819 |
| size | 13,122 |
A minimal implementation of the OWO Skin Application Protocol written in Rust.
use owo_skin::client::Client;
use owo_skin::muscles::{Muscle, MuscleWithIntensity};
use owo_skin::sensations::MicroSensation;
fn main() {
let client = Client::new();
client.auto_connect();
sleep(Duration::from_secs(2));
client.send_sensation_muscles(
MicroSensation::new(100,
1.,
20,
0.0,
0.0,
0.0,
"test".to_string()
),
vec![
MuscleWithIntensity::new(muscles::Muscle::DorsalL, 100),
]
);
}