thyttan

Results 161 comments of thyttan

>I know you've got your code that draws the X/Y lines - if you update that for every drag event, do those lines really appear to line up with where...

>As far as I can tell, in `kbtouch` the default is to use dragging to select the right key, so actually the fact you can't get to the edge doesn't...

>Thanks for those pics. What happens if you try pressing towards the bottom right of the screen? > >Maybe try: (...) I feel like the accuracy of the touches and...

Quoting myself: >I feel this is to be expected with adding the zoom step? However, it may prove to be a good compromise! I guess some clever math could zoom...

I finally took a stab at this and now have a solution that works with my watch and calibration: ``` { let zoomX = g.getWidth()/153; // 153 was the highest...

Makes total sense :) If I get to a more general solution that still works well for me, then I'll do a PR for an app.

I realized that applying the zoom affects the accuracy improvements of the previous calibration. So maybe it makes sense to avoid zooming for most of the screen area. Below is...

> Also it feels like if some other code did `Bangle.prependListener` before yours, it'd get called twice, once with zoomed and once without zoomed coordinates - which if it's using...

Ok, thanks for the links and example! I'll try a variation of that for a while.

Just leaving a note. So what's working best for me is my solution where I manually determine how far I can reach and then intercept and modify the `drag` event...