1 unstable release
0.1.1 | Oct 11, 2024 |
---|
#705 in Embedded development
23 downloads per month
23KB
518 lines
sensor_lib_as5600
A Rust sensor library for the AS5600 magnetic rotary encoder module.
Current State
The library is currently functional and has been tested thorugh unit testing and on actual hardware(ch32v203 micro-controller).
Sensor Pinout
Below is a basic overview of the sensor packges pinout, but make sure to checkout the data sheet for more detail.
- VDD5V:: 5v supply pin.
- VDD3V3:: 3.3v supply pin.
- OUT:: PWM output
- GND:: Ground pin.
- PGO:: Digital Input for Programming Option
- SDA:: I2C Data.
- SCL:: I2C Clock.
- DIR:: Digital Input for Direction(GND = ClockWise/VDD = CounterClockWise)
Usage
Adding to project
There are two ways to add the crate/repo to your project. You can use the github URL or you can add it via the normal crates name(TBD).
Cargo.toml
sensor_lib_as5600 = {git = 'https://github.com/jake-g00dwin/sensor_lib_as5600'}
Running Tests
To run the tests for the project after downloading or cloning the repo
cargo test
Roadmap
- Define all Bitmasks for registers.
- Add non-default i2c addressing.
- setup un-initialized and initialized versions of the sensor.
- Add example usage.
- Create an example repo for drop-in uC examples.
- Create Comperhensive Documentation using D.S. images.
- Create and link to example usage video.
Contributing
If you want to contribute to it feel free to open up a pull-request or make a new github issue.
Dependencies
~56KB