mirror of
https://github.com/laanwj/k210-sdk-stuff.git
synced 2024-11-22 09:26:21 +04:00
rust/accelerometer: Draw bubble
This commit is contained in:
parent
a7f437c8ce
commit
b6676ffcf8
@ -94,7 +94,8 @@ Run tests and benchmarks for the secp256k1 elliptic curve cryptographic library
|
|||||||
rust/accelerometer
|
rust/accelerometer
|
||||||
-----------------
|
-----------------
|
||||||
|
|
||||||
Read measurements from MSA300 accelerometer. Doesn't do anything interesting with them yet.
|
Read measurements from MSA300 accelerometer. Display a dot on the screen to visualize the current orientation
|
||||||
|
and magnitude.
|
||||||
|
|
||||||
[README](rust/accelerometer/README.md)
|
[README](rust/accelerometer/README.md)
|
||||||
|
|
||||||
|
@ -1,6 +1,7 @@
|
|||||||
# `accelerometer`
|
# `accelerometer`
|
||||||
|
|
||||||
Read measurements from MSA300 accelerometer.
|
Read measurements from MSA300 accelerometer. Display a dot on the screen to visualize the current orientation
|
||||||
|
and magnitude.
|
||||||
|
|
||||||
## Getting started
|
## Getting started
|
||||||
|
|
||||||
|
@ -54,6 +54,12 @@ fn io_set_power() {
|
|||||||
sysctl::set_power_mode(sysctl::power_bank::BANK7, sysctl::io_power_mode::V18);
|
sysctl::set_power_mode(sysctl::power_bank::BANK7, sysctl::io_power_mode::V18);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
fn sample_cirle(x: i32, y: i32, cx: i32, cy: i32, r: i32, rr: i32) -> bool {
|
||||||
|
// Early-out based on bounding box
|
||||||
|
(x - cx).abs() <= r && (y - cy).abs() <= r &&
|
||||||
|
((x - cx) * (x - cx) + (y - cy) * (y - cy)) <= rr
|
||||||
|
}
|
||||||
|
|
||||||
#[entry]
|
#[entry]
|
||||||
fn main() -> ! {
|
fn main() -> ! {
|
||||||
let p = pac::Peripherals::take().unwrap();
|
let p = pac::Peripherals::take().unwrap();
|
||||||
@ -79,12 +85,29 @@ fn main() -> ! {
|
|||||||
|
|
||||||
writeln!(stdout, "MSA300 init").unwrap();
|
writeln!(stdout, "MSA300 init").unwrap();
|
||||||
i2c::init(MSA300_SLV_ADDR, MSA300_ADDR_BITS, MSA300_CLK);
|
i2c::init(MSA300_SLV_ADDR, MSA300_ADDR_BITS, MSA300_CLK);
|
||||||
msa300::init();
|
msa300::init().unwrap();
|
||||||
|
|
||||||
loop {
|
loop {
|
||||||
let (x, y, z) = msa300::measure().unwrap();
|
let (x, y, z) = msa300::measure().unwrap();
|
||||||
let mag = (x*x+y*y+z*z).sqrt();
|
let mag = (x*x+y*y+z*z).sqrt();
|
||||||
writeln!(stdout, "m/s^2 x={} y={} z={} (size={})", x, y, z, mag).unwrap();
|
// writeln!(stdout, "m/s^2 x={} y={} z={} (size={})", x, y, z, mag).unwrap();
|
||||||
usleep(100000);
|
|
||||||
|
// draw bubble
|
||||||
|
let cx = ((y/8.5 + 1.0) * ((DISP_WIDTH / 2) as f32)) as i32;
|
||||||
|
let cy = ((x/8.5 + 1.0) * ((DISP_HEIGHT / 2) as f32)) as i32;
|
||||||
|
let r = (1.5*mag) as i32;
|
||||||
|
let rr = r * r;
|
||||||
|
let mut idx = 0;
|
||||||
|
for y in 0..DISP_HEIGHT as i32 {
|
||||||
|
for x2 in 0..(DISP_WIDTH/2) as i32 {
|
||||||
|
let x = x2 * 2;
|
||||||
|
image[idx] = (if sample_cirle(x + 0, y, cx, cy, r, rr) { 0xffff } else { 0 } << 16) |
|
||||||
|
if sample_cirle(x + 1, y, cx, cy, r, rr) { 0xffff } else { 0 };
|
||||||
|
idx += 1;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
lcd::draw_picture(0, 0, DISP_WIDTH as u16, DISP_HEIGHT as u16, &image);
|
||||||
|
// usleep(10000);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user