Microchip MCP4725 DAC Driver for Rust Embedded HAL This is a driver crate for embedded Rust. It's built on top of the Rust embedded HAL It supports sending commands to a MCP4725 DAC over I2C. To get started you can look at the examples on how to use this driver on an inexpensive blue pill STM32F103 board.
The driver can be initialized by calling create and passing it an I2C interface. The three least
significant bits of the device address (A2, A1 and A0) also need to be specified. A2 and A1 are
set in the device. A0 can be set by pulling the corresponding connection on the device high or
low.
rust, ignore
let mut dac = MCP4725::new(i2c, 0b010);
To set the dac output and powermode the dac register can be set;
rust, ignore
dac.set_dac(PowerDown::Normal, 0x0fff);
The MCP4725 also has a built in eeprom to store the value of the dac register needs to have the
next time the device is powered on;
rust, ignore
dac.set_dac_and_eeprom(PowerDown::Resistor100kOhm, 0x0fff);
[] Create an example writing eeprom [] Implement sending multiple consecutive fast commands
Licensed under either of
at your option.
Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.