magba 0.5.0

Magnetic computation library for Rust
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
/*
 * Magba is licensed under The 3-Clause BSD, see LICENSE.
 * Copyright 2025 Sira Pornsiriprasert <code@psira.me>
 */

mod hall_latch;
mod hall_switch;
mod linear_hall_sensor;

pub use hall_latch::HallLatch;
pub use hall_switch::HallSwitch;
pub use linear_hall_sensor::LinearHallSensor;