m5dial-bsp 0.7.1

Board support package for the M5 Dial.
#![no_std]
#![no_main]
///! This example draws a cycle on the screen that you can move with your finger.
///! The cycle can change color on clicks. This demonstrate the Touch driver
///! functionality
// ESP32 Hardware abstraction
use esp_hal::clock::CpuClock;
use esp_hal::main;

// Embedded graphics
use embedded_graphics::{
    pixelcolor::Rgb565,
    prelude::*,
    primitives::{Circle, PrimitiveStyleBuilder},
};

// Logging stuff
use defmt::{error, info};
use {defmt_rtt as _, esp_backtrace as _};

use m5dial_bsp::bsp::*;

extern crate alloc;

esp_bootloader_esp_idf::esp_app_desc!();

#[main]
fn main() -> ! {
    // Get periferals from the hal.
    let config = esp_hal::Config::default().with_cpu_clock(CpuClock::max());
    let peripherals = esp_hal::init(config);

    let mut tp_i2c = m5dial_bsp::get_internal_i2C!(peripherals);
    let touch = m5dial_bsp::get_touch!(tp_i2c);
    let mut display = m5dial_bsp::get_screen!(peripherals);

    // Initialize the BSP
    let mut board = m5dial_bsp::board_init!(peripherals);

    // Show must go on !
    m5dial_bsp::make_display_backlight!(bl, peripherals);
    bl.set_backlight(100);

    const COLOR_LIST: [Rgb565; 7] = [
        RgbColor::BLUE,
        RgbColor::RED,
        RgbColor::GREEN,
        RgbColor::CYAN,
        RgbColor::YELLOW,
        RgbColor::MAGENTA,
        RgbColor::WHITE,
    ];

    let mut style_index: usize = 0;

    esp_alloc::heap_allocator!(size: 72 * 1024);

    info!("On screen counter demo running!");
    let (w, h) = display.bounds();
    let mut point = Point::new((w / 2).into(), (h / 2).into());

    let mut need_redraw = true;
    loop {
        // Change Test color on button push
        if let Some(state) = board.has_button_changed() {
            if state == false {
                style_index = (style_index + 1) % COLOR_LIST.len();
                need_redraw = true;
            }
        }

        if let Ok(x) = touch.count(&mut tp_i2c) {
            if let Some(_) = x {
                //info!("Touch: {}", touch_count);
                if let Ok(p) = touch.get_point(&mut tp_i2c, 0) {
                    info!("Pos: x={} y={}", p.x, p.y);
                    point.x = p.x.into();
                    point.y = p.y.into();
                    need_redraw = true;
                } else {
                    error!("I2C error");
                }
            }
        } else {
            error!("I2C error");
        }

        if need_redraw {
            display.clear();
            // Create the cycle with the given color
            let style = PrimitiveStyleBuilder::new()
                .stroke_color(COLOR_LIST[style_index])
                .stroke_width(3)
                .fill_color(Rgb565::BLACK)
                .build();

            Circle::with_center(point, 50)
                .into_styled(style)
                .draw(&mut display)
                .unwrap();

            if display.flush().is_err() {
                error!("Display flush error");
            }

            need_redraw = false;
        }
    }
}