kiibohd-hall-effect-keyscanning

Crates.iokiibohd-hall-effect-keyscanning
lib.rskiibohd-hall-effect-keyscanning
version0.2.0
sourcesrc
created_at2022-04-30 03:48:39.499284
updated_at2023-05-19 05:39:14.640073
descriptionHall Effect keyscanning for strobed matrices
homepage
repositoryhttps://github.com/kiibohd/kiibohd-core
max_upload_size
id577979
size17,872
Jacob Alexander (haata)

documentation

README

kiibohd-hall-effect-keyscanning

Rust docs.rs Crates.io Crates.io Crates.io

Keyscanning embedded-hal driver for kiibohd-hall-effect. Can be used with single-shot, interrupt or DMA-connected ADC drivers.

Usage

const ADC_SAMPLES: usize = 1;
const RSIZE: usize = 6; // Matrix rows
const CSIZE: usize = 12; // Matrix columns
const MSIZE: usize = RSIZE * CSIZE; // Total matrix size
type Matrix = kiibohd_hall_effect_keyscanning::Matrix<PioX<Output<PushPull>>, CSIZE, MSIZE>;

let mut matrix = Matrix::new(cols).unwrap();
matrix.next_strobe().unwrap(); // Strobe first column

// Retrieve adc sample and key index
let sample = read_adc();
let index = determine_key_index();

// Store the sample value at the specified index
// ADC_SAMPLES specifies how many samples are needed (averaged) until a processed sense value is returned
match matrix.record::<ADC_SAMPLES>(index, sample) {
		Ok(val) => {
				// If data bucket has accumulated enough samples, pass to the next stage
				if let Some(sense) = val {
						// Processed ADC data
				}
		}
		Err(e) => {
		    // Usually this is an index error
				defmt::error!("Sample record failed ({}, {}, {}):{} -> {}", i, strobe, index, sample, e);
		}

Building

cargo build

License

Licensed under either of

Contribution

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.

Commit count: 192

cargo fmt