blob: e8801c4853b056c4940fb93bfb886ef59825d92d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
|
//! This example uses FIFO with polling, and the maximum FIFO size is 8.
//! Refer to async example to handle larger packets.
//!
//! This example controls AD5171 digital potentiometer via I2C with the LP-MSPM0L1306 board.
#![no_std]
#![no_main]
use defmt::*;
use embassy_executor::Spawner;
use embassy_mspm0::i2c::{Config, I2c};
use embassy_time::Timer;
use {defmt_rtt as _, panic_halt as _};
const ADDRESS: u8 = 0x2c;
#[embassy_executor::main]
async fn main(_spawner: Spawner) -> ! {
let p = embassy_mspm0::init(Default::default());
let instance = p.I2C0;
let scl = p.PA1;
let sda = p.PA0;
let mut i2c = unwrap!(I2c::new_blocking(instance, scl, sda, Config::default()));
let mut pot_value: u8 = 0;
loop {
let to_write = [0u8, pot_value];
match i2c.blocking_write(ADDRESS, &to_write) {
Ok(()) => info!("New potentioemter value: {}", pot_value),
Err(e) => error!("I2c Error: {:?}", e),
}
pot_value += 1;
// if reached 64th position (max)
// start over from lowest value
if pot_value == 64 {
pot_value = 0;
}
Timer::after_millis(500).await;
}
}
|