Fixing random occurring problems is always a challenge. You never know what could be the cause and frankly, it could be anything!!! Let's take a look at this random 'bug' and see what was done to find it and kill it!
Cheers!
Chris
Fixing random occurring problems is always a challenge. You never know what could be the cause and frankly, it could be anything!!! Let's take a look at this random 'bug' and see what was done to find it and kill it!
Cheers!
Chris
Raspberry Pi just released the latest version of the Pico 2 with W - that means WiFi!!!!!
Here are some details you may find interesting.
The next video is ready and will premiere on Nov 29th 2024.
This video is all about tracking down a nasty bug that has been plaguing the Zoomie for many months now. Turns out, it was a pretty dumb mistake, but nonetheless it was tough to track down.
While part of the original concept, Auto Routing was removed based on a misunderstanding. It is being re-implemented into the experiment as it will add so much more capability.
As the experiment runs, each robot (Zoomie) will be dispatched at random times to random locations. That dispatch message will contain the driving directions to get to the destination. In navigation systems, shortest path algorithms perform this task. Their purpose is very specific, to find the shortest path from all available options to get from start to finish.
Initially it was believed that this would create a bad data set as all robots would pass through the city center thus clogging up those streets. However, as one of our viewers pointed out, the data set can be used to modify the behavior of the algorithm so that it AVOIDS the city center and instead uses the bypass "highway". While not shorter, it ultimately is faster because there is far less stop-and-go situations and less traffic creating additional delays.
This video is not an explanation of how this particular (Dijkstra) function works, rather it is about its implementation in this experiment and later on how it will be used to alter the flow of traffic through ZoomTown.
Cheers!
Chris
Many of your PICO projects will be self powered and you need a special USB cable to communicated with it otherwise you can damage the PICO or the batteries. Connecting USB while the PICO is powered can also create a safety hazard!.
This video explain why this is a problem and how to take an ordinary and inexpensive cable and make is safe for use. BE SURE TO HAVE THE USB CABLE UNPLUGGED WHEN MAKING THIS MODIFICATION!
Cheers!
Chris
A requirement from the beginning was to have random events in the experiment. This new routine will add the ability to:
* Select a random time for the robot to go somewhere
* Select a random location for the robot to go to
* Avoid sending a robot to a banned destination
This functionality takes us another step closer to starting the actual experiments!
Cheers!
Chris
The Zoomie Control Program has been completely re-written and a LOT has changed. This video will update you on the new structure of the pr...