Live Stream To YouTube By Pointing A Box And Pressing A Button

YouTube has the ability to do live streaming, but [Tinkernut] felt that the process could be much more straightforward. From this desire to streamline was born the Raspberry Pi based YouTube live streaming camera. It consists of a Raspberry Pi with some supporting hardware and it has one job: to make live streaming as simple as pointing a box and pressing a button. The hardware is mostly off-the-shelf, and once all the configuration is done the unit provides a simple touchscreen based interface to preview, broadcast live, and shut down. The only thing missing is a 3D printed enclosure, which [Tinkernut] says is in the works.

Getting all the software configured and working was surprisingly complex. Theoretically only a handful of software packages and functionality are needed, but there were all manner of gotchas and tweaks required to get everything to play nice and work correctly. Happily, [Tinkernut] has documented the entire process so others can benefit. The only thing the Pi is missing is a DIY onboard LED lighting and flash module.

Latskap Semi-Automatic Liquor Cabinet

A well-stocked liquor cabinet is a necessity for the classy gentleman or gentlelady who likes to entertain. Having the proper spirits and mixers on hand to make anything from a martini to a sidecar is always a solid way to ensure guests have a good time at your cocktail party. In the past, a beautifully crafted cherry or walnut liquor cabinet was enough to impress visitors with your affluence. These days, if you don’t want to look like a pauper, you have to take it a step further.

[Elias Bakken] and his uncle [Mike Moulton] have decided to take liquor cabinets into the 21st century with a semi-automatic liquor cabinet called Latskap. The project is still in progress, and in the prototyping stage, but their build log on Hackaday.io is showing a lot of potential. It shouldn’t be long before they have a fully functional prototype finished.

Continue reading “Latskap Semi-Automatic Liquor Cabinet”

Hackaday Prize Entry: InspectorBot Aims To Look Underneath

Why bother crawling into that tiny sewer tunnel and getting coated in Cthulhu knows what — not to mention possibly getting stuck — when you can roll a robot in there instead? That’s what InspectorBot does. It’s [Dennis]’ entry for The Hackaday Prize and a finalist for our Best Product competition.

InspectorBot is a low-profile rover designed to check out the dark recesses of sewers, crawlspaces, and other icky places where humans either won’t fit or don’t want to go. Armed with a Raspberry Pi computer, it sports a high-definition camera pointed up and a regular webcam pointing forward for navigation. It uses point-to-point WiFi for communication and rocks all-wheel drive controlled by a pair of L293D motor drivers.

This seems like fertile ground for us. Pipe-crawlers, chimney-climbers, crawlspace-slitherers all sound like they’d be helpful, particularly in conjunction with some kind of computer vision that allowed the robot to notice problems even when the operator does not. Right now, [Dennis] has the chassis rolling and most of the current work is focused on software. Both cameras are now working, allowing the InspectorBot to send forward-looking and upward-looking video back to the operator at the same time. This, alone, is a great advancement of the current crop of Raspberry Pi rovers and adds a lot of functionality to an easy-to-build platform.

Multiple Monitors With Multiple Pis

One of the most popular uses for the Raspberry Pi in a commercial setting is video walls, digital signage, and media players. Chances are, you’ve probably seen a display or other glowing rectangle displaying an advertisement or tweets, powered by a Raspberry Pi. [Florian] has been working on a project called info-beamer for just this use case, and now he has something spectacular. He can display a video on multiple monitors using multiple Pis, and the configuration is as simple as taking a picture with your phone.

[Florian] created the info-beamer package for the Pi for video playback (including multiple videos at the same time), displaying public transit information, a twitter wall, or a conference information system. A while back, [Florian] was showing off his work on reddit when he got a suggestion for auto-configuration of multiple screens. A few days later, everything worked.

Right now, the process of configuring screens involves displaying fiducials on each display, taking a picture from with your phone and the web interface, and letting the server do a little number crunching. Less than a minute after [Florian] took a picture of all the screens, a movie was playing across three weirdly oriented displays.

Below, you can check out the video of [Florian] configuring three Pis and displays to show a single video, followed by a German language presentation going over the highlights of info-beamer.

Continue reading “Multiple Monitors With Multiple Pis”

Visual Development With XOD

Early programmers had to represent code using binary, octal, or hex numbers. This gave way quickly to representing programs as text to be assembled, compiled, or interpreted by the computer. Even today, this remains the most common way to program, but there have been attempts to develop more visual ways to create programs graphically. If you program microcontrollers like the Arduino, you should check out XOD and see how you like visually creating software. The software is open source and currently, can target the Arduino or Raspberry Pi.

Continue reading “Visual Development With XOD”

Turning And Burning With A CNC Pyrography Machine

With CNC machines, generally the more axes the better. Three-axis machines with a vertical quill over a rectangular workspace are de rigueur, and adding an axis or two can really step up the flexibility of a machine. But can only two axes be of any use? Sure can, as witnessed by this two-axis CNC wood burning machine.

As [tuckershannon] tells the tale, this was a newbie build aided by the local hackerspace. Axis one is a rotary table of laser-cut wood gears powered by a stepper. Axis two is just a stepper and lead screw sitting on a couple of blocks of wood. A Raspberry Pi under the hood controls the motors and cycles the pyrography pen on and off as it scans across a piece of wood on the rotary table, burning a spiral pattern that makes for some interesting art. Hats off to [tuckershannon] for figuring out the math needed to adapt to the changing speed of the pen over the wood as the diameter gets bigger.

We love this build, can’t help but wonder if some clever gearing could eliminate the need for the second stepper. And perhaps an upgrade from the standard resistive wood burner to an arc lighter pyrography pen would improve resolution. Still, it’s hard to argue with results, and this is a great hack.

[via r/raspberrypi]

Thanks to [Liz] for the tip!

Hackaday Prize Entry: FabDoc Is Version Control For Project Images

FabDoc is an interesting concept that attempts to tackle a problem many of us didn’t realize we had. There are plenty of version control systems for software, but many projects also have a hardware element or assembly process. Those physical elements need to be documented, but that process does not easily fit the tools that make software development and collaboration easier. [Kevin Cheng] sums FabDoc up as “a system to capture time-lapse pictures as pre-commits.”

With FabDoc a camera automatically records the physical development process, allowing the developer to focus on work and review later. The images from the camera are treated as pre-commits. Upon review, the developer selects relevant key images (ignoring dead ends or false starts) and commits them. It’s a version control and commit system for the physical part of the development process. The goal is to remove the burden of stopping the work process in order to take pictures, automatically record the development process and attach it to a specific project, and allow easy management of which images to commit.

The current system uses a Raspberry Pi Zero with a camera mounted on safety glasses, and some support software. Some thought has certainly gone into making the system as easy to use and manage as possible; after setting up a repository, scanning a QR code takes care of telling the system what to do and where to put it. The goal is to make FabDoc fast and easy to use so that it can simply work unattended.

We saw a visual twist on version control some time ago with a visual diff for PCBs, which was a great idea to represent changes between PCB designs visually, diff-style. It’s always exciting to see someone take a shot at improving processes that are easy to take for granted.