embassy/examples/nrf/src/bin/qdec.rs

24 lines
607 B
Rust
Raw Normal View History

2022-05-07 00:46:36 +02:00
#![no_std]
#![no_main]
#![feature(type_alias_impl_trait)]
use defmt::info;
use embassy::executor::Spawner;
2022-06-12 22:15:44 +02:00
use embassy_nrf::qdec::{self, Qdec};
use embassy_nrf::{interrupt, Peripherals};
use {defmt_rtt as _, panic_probe as _};
2022-05-07 00:46:36 +02:00
#[embassy::main]
async fn main(_spawner: Spawner, p: Peripherals) {
let irq = interrupt::take!(QDEC);
let config = qdec::Config::default();
2022-05-07 01:15:01 +02:00
let mut rotary_enc = Qdec::new(p.QDEC, irq, p.P0_31, p.P0_30, config);
2022-05-07 00:46:36 +02:00
info!("Turn rotary encoder!");
let mut value = 0;
loop {
2022-05-07 01:15:01 +02:00
value += rotary_enc.read().await;
2022-05-07 00:46:36 +02:00
info!("Value: {}", value);
}
}