dualsense-tools 0.3.0

Tools to interact with the Dualsense PS5 controller
Documentation
1
2
3
4
5
6
7
8
9
10
/// Represents readings from the standard axes of a dualsense controller
#[derive(Clone, Copy, Debug, Default, Eq, PartialEq, Hash)]
pub struct DualsenseAxes<V> {
    pub x: V,
    pub y: V,
    pub z: V,
    pub rx: V,
    pub ry: V,
    pub rz: V,
}