device-envoy-esp 0.1.0

Build ESP32 applications with composable device abstractions
Documentation
1
2
3
4
5
6
7
use device_envoy_esp::led2d::layout::LedLayout;

const INVALID: LedLayout<3, 3, 1> = LedLayout::new([(0, 0), (1, 0), (1, 0)]);

fn main() {
    let _invalid = INVALID;
}