Posts

Showing posts with the label Robotics

Mocking Point Clouds in ROS Rviz

Image
Robot Operating System (ROS) is a powerful tool we can use with robot simulations. Simulating a point cloud is one of the things I'm interested in and this blog post is a type of a note to self . Before we start, there are few things we need to get the simulation done. Ingredients 1. ROS : we need to have ROS installed in my computer. It's pretty straightforward and one can refer the official documentation on installation steps. Make sure ROS is installed and working without any errors by running the following command in a terminal; $ roscore 2. Rviz : rviz is a part of ROS. Make sure it's available and running, by running the following command in a terminal window; $ rosrun rviz rviz You should get a graphical interface looks like the following window Figure 1. Rviz window

Crazyflie 2.0 Custom Obstacle Avoidance Deck with 13 VL53L1X ToF Sensors

Image
Crazyflie 2.0 is a lightweight micro aerial vehicle. This open source platform comes with a variety of decks to support multiple implementations. One of them is a Obstacle Avoidance Deck by the original manufacturer itself. This deck supports five Time of Flight (ToF) sensors mounted as shown in figure below. Our project is requires sensor readings captured using these ToF sensors. Effectiveness and accuracy of our algorithms require more data points than points provided by just five sensors. There are no other hardware platforms available in the Internet supporting more ToF sensors and the alternative we had was to develop one on our own. Researching into existing hardware platform, we were able to extend the design to build a custom deck that supports 13 ToF sensors mounted facing different angles. The schematics and bill of materials can be found from this repository hosted online: https://github.com/CloudyPadmal/CrazyFlieToFDeck Designing the hardware