nbrr
nbrr
I note that #145 has been merged. How do I make a dependency to use the `std` feature? I'm compiling something to wasm with yew as a dependency. Yew does...
Throwing in ideas for abstraction. ```Rust trait InteractiveObject { fn try_activate(&self, swipe: Swipe) -> bool; fn action(???) -> T; fn render(&self, canvas: &mut Canvas); } struct SimpleTappableObject{ width: usize, height:...
@richardanaya the example is starting to take form. It displays a d-pad that moves the pine image. It lags a bit some time when you spam tap it, I haven't...
Since the callback prescribes what to draw, we could have it return an enum requesting some action. Or directly poll the Frame, and only draw when it's been updated. Frame...
Doesn't it make the `RunResponse::Draw` useless?
Besides input file path, the one thing I had to adapt on my rpi running Raspbian, is that the timeval of the input event was given on 8 bytes instead...
> I'm noticing that it's the only device that has a non-trivial "abs" value, i'm wondering if we could use that as some kind of ability to detect the device....
All this seems to be a fragment of evdev for which there is already [a few crates](https://crates.io/search?q=evdev).
> ‘evdev’ looks like it has what we need. The api is a little esoteric, going to look at it a bit. I wonder if it handles time stamp differences....
> @nbrr checkout the new example I added in `conifer` https://github.com/richardanaya/conifer/blob/master/examples/scan.rs :) > > ``` > cargo run --example scan > ``` Looks good! ``` name: FT5406 memory based driver...