Ed Murphy
Ed Murphy
@sherifayantayo I have a hunch that legacy camera was chosen at some point and now you have picamera instead of pycamera2. I suggest you reinstall from scratch, again using the...
@hsy75 can you ask this question in discord? You are much more likely to find someone who is using WSL.
To simulate the websocket api we need to implement two public interfaces, one in the javascript code and one in the c++ code. - Javascript implements the command processor in...
We can implement the c++ WASM as a web worker so it will run on its own thread and not block the JavaScript. We can then just use window.PostMessage() to...
esp32 restart generally means it is not getting enough power. The esp32cam pull a lot of power when it first starts. Also, any issues with common ground between motors and...
As for the protocol between the rover and the web client I agree we could improve this. I wanted a text protocol so it is easy to debug. Also, I...
I did a little research on that link you provided. That project is using the IBUS serial protocol to talk between an Arduino and an RC receiver. The IBUS protocol...
The gopigo robot uses an custom HAT that includes a microcontroller. It interfaces to the host RaspberryPi using the I2C bus and a binary protocol. See [gopig github](https://github.com/DexterInd/GoPiGo/tree/master/Firmware) This has...
I think we can do better by: - message number: I was calling this command id or command number. This is the monotonically increasing id produced by the sender of...
I'll take a look