Society is badly in need of automation and robotics. The issue is that suddenly the tidal wave of demand has been met with supply chain and labor shortages. Expert labor that understands the old paradigm, plus the new at the same time pretty much does not exist.
This gap is real.
Caleb Eastman and I have talked quite a bit on this topic of total digitization universality. Otherwise old systems can’t talk to new. We’ve even a new startup HoneyBadger Controls specifically to be a new type of Zapier of Industrial IoT. Zapier by the way, is an amazing piece of technology that Zaps data back and forth between SaaS applications so you don’t have to go ask your dev team to do it. Thanks to Andy Hayes for telling me about Zapier years ago. It basically put my custom integrations business out of business, but saved thousands of dollars in the meantime for customers.
We’re in stealth mode still but basically we just love badgers and see a real need for some better cross-domain connectivity.
Uncategorized
Hello world!
Welcome to Starter Templates Sites. This is your first post. Edit or delete it, then start writing!
Door Opening Robots
Boston Dynamics released a video recently showing door-opening robots. This is incredible engineering. Note how they seem to be working together. It also seems to use it’s leg to hold the door and then waits for the companion. That, combined with the speed and agility make it one of the best robots we’ve seen:
How to install an operating system onto a Raspberry Pi SD card
Whether you are installing Linux, Raspbian or BiBli operating systems to your Raspberry Pi’s SD card the process is always the same. It does involve opening up the command line but it’s actually a great way to learn the basics of Linux.
1. The image, or compiled source code is going to be called filename.img. I like to put the image right in my root directory but it typically would be in /Downloads if you found it online.
2. You will first need to make sure the SD card is formatted. We’re not going to get into partitioning however for advanced users you may want to pre-format your SD card into different sizes. For most people simply insert the SD card into your computer using an SD card reader.
Important: This is for advanced users only. Using ‘sudo’ will allow you to completely erase a drive with no warning.
3. You can find the name of your SD card by typing:
sudo diskutil list
4. Your computer should detect it, however you may need to first unmount the disk as it becomes ‘busy’ when you plug it into the reader. This command simply involves typing:
sudo diskutil unmountDisk /dev/disk2
5. Start copying. This is going to take a while and you won’t see any log or response until it’s done. We use ‘dd’ which is a command and it’s pretty easy to rember. The ‘if’ stands for input file and the ‘of’ stands for output file. Your directory, file and disk names may very.
sudo dd if=biblios2.0.img of=/dev/disk2
6. Check the status by opening a new window and running this command.
sudo kill -INFO $(pgrep ^dd)
Viewing live video feed via Raspberry Pi
There are a few different ways to view the video feed from a BiBli. The media centers on BiBli prototypes run on Raspberry Pi which has some built-in video processing capabilities. To view the video feed from any BiBli robot on any device simply enter this into a browser:
http://xxx.xxx.x.1x:5000/video_feed
Where the ‘x’ represents the unique IP address of the Pi.