Kaelin Laundry
Kaelin Laundry
Can't you upgrade git? Is it in the package repositories? `sudo apt install git`
It looks like a newer version is available in stretch-backports but 2.11 was the version they cut off at for stretch. You can find instructions to install from backports here:...
It was dependent on the ordering of the tags. In past releases I believe I had created the tags in the "wrong" order such that at the time it built...
I don't have the time (or hardware) to work on a new project right now but I'd be interested to see what you come up with!
Yeah, multi-threaded access to the same motor is not (officially) supported, unfortunately. It's curious that your results seem to indicate that stock motors work un-modified with the v1.0 series; I...
That case sounds like this other one: https://github.com/ev3dev/ev3dev-lang-python/issues/727 OSError 4 is EINTR, i.e. "system call interrupted". It means that a signal was raised while in a system call, and the...
Ah, yeah, odometry uses a thread in the background and may provoke EINTR.
The way I would imagine implementing it is to throw the gyro and wheel odometry angle measurements into a Kalman filter (to smooth out the gyro data, primarily) then use...
I think this could be cool, but from a time investment perspective the reward probably isn't worth it for now. My thought is that uPy is, in general, designed to...
This is a very interesting concept. Firstly, I think that something like this would need to be implemented at the language binding/user program level, as both emulating the OS and...