16 comments

[ 2.9 ms ] story [ 50.1 ms ] thread
this is the coolest!!!!! Although.... it randomly disconnects sometimes! but STILL the coolest thing ever!
ha, that's me taking over control
Really cool, but please work a bit on controls for smartphones. Holding a button pops up a browser's menu.
any webdevs out there, love to help?
So generally a quick way to prevent that sort of stuff from happening on mobile is to tack this CSS onto the elements in question (canvas, img, etc):

    touch-action: none;
    -ms-touch-action: none;
    user-select: none;
That should prevent any touch related actions and accidental user selection on devices.

See MDN for details on each:

https://developer.mozilla.org/en-US/docs/Web/CSS/touch-actio...

https://developer.mozilla.org/en-US/docs/Web/CSS/user-select

done, thanks! didn't seem to work though
I think I got stuck, so I tried sending an S-O-S via the motor.
This is really cool! I would have loved to implement such a low latency video feed for one my past projects. How did you do the video feed?
h264 raw over websockets, js decoder
wow, that latency is fantastic, how does it work?