Tuesday, March 15, 2016

Candle Maker

My girlfriend loves to burn candles. However when a candle is burned to the end there is always some wax remaining. We collect this wax for a friend who makes new candles from this wax. However I wanted to try it for myself.

So I saw on Yeggi a picture of a candle maker, made from a milk karton. For those of you who do not know what Yeggi is, just put www.yeggi.com in your browser and you are directed to a database with hundred/thousands indexed 3d designs for your 3D printer.

So when I searched for the candlemaker ( http://www.yeggi.com/q/kaarsmaker/ ) the image immediately came up. But when I clicked on it I was linked to a non-existing page on thingiverse. So what now.

Well I fired up Tinkercad and designed my own ofcourse. You can find me design here.
https://www.tinkercad.com/things/emyyD9VQTuu-kaarsenmal



 
Or you can download it at the bottom of this story.

So how to use this mold.


 

First get an empty standard milk karton and clean it thoroughly. Next cut the top part away so you will have a nice square tube, and make it as high as you desire.







Put my candle maker on top and put some rope in the middle circle in the candle maker. make sure the rope reaches the bottom of the karton. The rope will function as the wick. Shoe laces are ideal for this. As I lacked them at the time I used some standard rope. Don't use synthetic rope as that will not work. Use natural materials like cotton or sisal. At the end of the rope (on the bottom of the carton) put a paperclip. This will prevent you from pulling the wick out of the candle.

Now in a spare saucepan or something similar warm up your candle wax remains until it is liquid. Candle wax melts easily at about 60 degrees celsius, so it will not be too hot.





When melted pour the wax into the carton and let it totally down. The carton may leak a bit so put it on an old newspaper in the kitchen sink where it can not do any harm.





When cooled down take off the candle maker and peel of the carton and voila: a brand new candle ready to use.




Works like a charm and the candle maker can be re-used all the time.

Rests me to present you the STL files so you can print your own.


STL file for Candle Maker

So till next time.
Have fun.

Luc Volders

Tuesday, March 1, 2016

Arduino to Android Part II

Arduino to Android using an Attiny85

So in a previous story I showed you how to send data from an Arduino Nano to the display of your Android device. I also told you there were many practical projects for this. Well I have made a practical project I want to share with you.

My girlfriends daughter and her husband bought a camper. And it is a very old and large camper. Well large isn't exactly the problem. The width is. 
As it is very wide it is almost impossible to see what is behind it. And therefore I decided to build a parking aid.

The idea is very simple. I'll take a HC-SR04 ultrasonic distance meter. Attach it to an Attiny85 and then send the measured distances over bluetooth to a mobile phone. Easy ?? Piece of cake !!!

First let me give you the schematics. In this you can see that the HC-SR04 ultrasonic distance sensor and the HC06 bluetooth module are attached to an Attiny85.




 I'll give the pin attachments for your convenience here.

Pin 5 of the Attiny85 is attached to the RX line of the Bluetooth module
Pin 6 of the Attiny85 is attached to the TX line of the Bluetooth module
Pin 7 of the Attiny85 is attached to the TRIG pin of the Ultrasonic Module and
Pin 2 of the Attiny85 is attached to the ECHO pin of the ultrasonic module.

On a breadboard it wil look as follows:


And that looks in real life like this:






As you can see the project can be powered by 3AAA batteries. The case for the batteries is designed by me and 3D printed. You can find the design for this case in an upcoming story.

Now lets's have a look at the arduino code:





Nor very complicated. First we define the TX and RX pins on the Arduino. Remember that we put the TX of the Attiny to the RX of the Bluetooth module and the other way round.  As the Attiny85 has no USB port or serial communication we use the Softwareserial library for this. Next we define the Trigger and Echo pins for communication with the Ultrasonic Sensor.
In the Setup() part we define the pins as INPUT or OUTPUT.


Next step is to put the Triggerpin for 10 microseconds HIGH and then measure how long it takes to get feedback on the ECHOPIN. The duration of the bouce has to be divided by 29.1 to get the sistance in Centimeters. And that's all.

Oh just one last thing. We print over the Bluetooth connection the words: The Distance is, followed by the measured distance.

So the nice part is that the Android screen will display what we print to it over bluetooth just like this shows:





Neat huh ????

Ok. On the Android side nothing has changed from the previous story. The Android program has been made with APP-Inventor and is therefore easy to edit for your own purposes. So get the source code here or the readymade APK which can directly be installed.

Rests me only to give you the Arduino code:

Arduino to Android distance measurer

So till next time.
Have fun.

Luc Volders