blob: 8d1ed1726f4d4d7241019891e9fae87bfef0349d (
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-MSPM0G3507 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 = 0x6a;
#[embassy_executor::main]
async fn main(_spawner: Spawner) -> ! {
let p = embassy_mspm0::init(Default::default());
let instance = p.I2C1;
let scl = p.PB2;
let sda = p.PB3;
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;
}
}
|