Stocker Monitors The Markets

stocker-monitors-the-market

If you can’t help but spend the day checking in on your stock prices this ambient device can help you cope. It monitors how the trading is going and illuminates an LED as feedback. Here the Apple stock is trading up so the light is green. The video after the break shows other stocks trading down, causing it to switch to red.

An Arduino interfaces with the custom application via USB. For now it looks like the two colors are all it’s capable of but we think there’s a lot more potential. Some creative coding could use factors like how much the stock has moved, trading volume, volatility, or a plethora of other data to give feedback. We could see a spectrum of colors (like on a temperature map) used to improve the level of feedback. And if the market really tanks there’s always the ability to add flashing!

The diffuser for the project is quite interesting to us. [Ali Reza Kohani] made it from a leftover scrap of acrylic. The bubbled surface was created with a heat gun before bending the sheet into an arc.

Continue reading “Stocker Monitors The Markets”

Hot Air Rework Doubles As An Herbal Bag Vaporizer

hot-air-rework-bag-vaporizer

This hot air rework station is being used for more than just soldering surface mount components. Since it has settings for temperature and airflow [BrokeHippieTech] figured it would work as a bag vaporizer. In the video after the break they show off the custom parts and then take it though and herbal blend bag fill.

The hot air station comes with several different tips. The smallest one was used to mount a vaporizer bowl using high-temperature JB Weld. On the output side of the bowl a metal stem was also affixed to interface with the mouthpiece of a vaporizer bag. The heat from the rework station brings the herbs just below the combustion point, releasing the active ingredients without including the harmful byproducts associated with smoking.

We’re putting this one under medical hacks because we hope it’s being used responsibly and legally. As with the last vaporizer build we looked at, we have concerns about what else the apparatus may be putting into the collected gases.

Continue reading “Hot Air Rework Doubles As An Herbal Bag Vaporizer”

Fitting A Cold, Metal Heart In An Altoids Tin

sim

[James] has been building a heart rate monitor using a very cool TI chip. He needed a way to test his device, and commercial ECG simulators, like all biotech devices, are absurdly expensive. [James] decided to build his own heart rate simulator, and in the process made a great tool and one of the most well documented projects we’ve ever seen.

Of course, if you’re building an ECG simulator, you’re going to need a good sample of a heart’s electrical pattern. To get this sample, [James] found an old army manual with a diagram of an ideal ECG pattern. [James] took this PDF manual, screen capped the diagram, and used a Python script to generate an array in C the Arduino could repeat over and over.

The rest of the build consisted of a D/A converter, a pot to change the heart rate, a very nice seven-segment display, and a few banana jacks to connect to [James]’ heart monitor. Everything is up in a git, including an amazingly well documented (87 pages!) tutorial for building your own Arduino heart simulator.

Ceramic Hot-end Mount Seeks To Improve Extrude Performace

ceramic-hot-end-mount

Take a gander at the part of this extruder head which looks like a chess pawn. It’s the mounting bracket for the hot end and it’s made out of ceramic. [Ed] came up with the idea to use ceramic to mount the hot end when trying to improve the design while keeping it rather simple and easy to assemble. The concept uses the thermal properties of the ceramic to insulate well enough to operate the extruder at higher temperatures without causing other problems.

Where does one get a custom ceramic part anyway? Turns out you can get low volume runs from China much like PCBs. The minimum order was ten units, which was still a leap of faith since he had no way of testing the design in advance. The first run with the new part went quite well, but only for the first layer and then the filament jammed. He’s still not sure why, but overcame the issue by lining the inside of the ceramic with a PTFE tube. This means he now has to use a smaller filament to fit through it. But the quality of the prints he’s getting with 1.75mm stock and the ceramic head are superb.

It may even be possible to print this ceramic part some day. We remember seeing another extruder that can deposit ceramic clay.

Vintage Kegerator

Vintage Kegerator

[Kerber] got his hands on a classic 1950’s General Electric fridge, and converted it into this classy vintage kegerator.

As his build log shows, it took an intensive restoration process to get this fridge back in shape. He completely stripped it down, scraping off the sixty year old insulation, fibreglass, and glue. Then the chassis was sanded down to a smooth finish and painted black. R-19 insulation was added to replace the old stuff.

Next up was electronics. An Arduino, DS18B20 temperature sensor, and a solid state relay were used to regulate the temperature and prevent frozen beer. There’s also a Guruplug server that reads data from the Arduino every minute. It makes this data accessible through a web page, so the temperature of the kegs can be monitored from anywhere. [Kerber] admits that this is overkill, but leaves room for future expansion.

The kegerator draws about 180 Watts, and runs for about 6 minutes per hour to keep the temperature regulated. This is pretty impressive considering the age of the fridge. The final restoration looks great, and serves up data along with the beer.

Web Scraping Amazon And Rotten Tomatoes

web-scraping-amazon-and-rotten-tomatos

[Rajesh] put web scraping to good use in order to gather the information important to him. He’s published two posts about it. One scrapes Amazon daily to see if the books he wants to read have reached a certain price threshold. The other scrapes Rotten Tomatoes in order to display the audience score next to the critics score for the top renting movies.

Web scraping uses scripts to gather information programmatically from HTML rather than using an API to access data. We recently featured a conceptual tutorial on the topic, and even came across a hack that scraped all of our own posts. [Rajesh’s] technique is pretty much the same.

He’s using Python scripts with the Beautiful Soup module to parse the DOM tree for the information he’s after. In the case of the Amazon script he sets a target price for a specific book he’s after and will get an email automatically when it gets there. With Rotten Tomatoes he sometimes likes to see the audience score when considering a movie, but you can’t get it on the list at the website; you have to click through to each movie. His script keeps a database so that it doesn’t continually scrape the same information. The collected numbers are displayed alongside the critics scores as seen above.

Replacement Controllers For Slot Car Racing

replacement-controllers-for-slot-car-racing

That blur on the right is a car racing into the frame. But look around the rest of the image and you’ll see the area is littered with extra hardware. [Matthew], [Doug], and [Barry] have been hard at work adding extra functionality and replacing the original controllers on this Scalextric slot car setup. So far it looks like their build log has not caught up with all the work they’ve done. We’re hoping to learn more details as they have time to write about them (this is coursework at University so we’re sure there’s a lot on their plates). But for now there are several videos and a gallery of images to drool over.

The cars are controlled by the voltage level in the track. The team replaced the stock controllers with a Raspberry Pi. It manages that voltage using Pulse-Width Modulation via MOSFETs. This allows the races to be automated but also makes it simple for a human operator to use just about any input device imaginable to control the cars. For good measure they also added a lap counter that uses an IR LED and detector to sense when a car passes the finish line.

After viewing several of their videos we think the goal of the project is to log the fasts times without sending the cars flying off the tracks during the turns.