Saturday 26 January 2013

Leds Strip Fading system



Description
I made a little test with some components to find out how to control the brightness of this leds strip, I couldn't find a good answer on Google so I came up with a solution.
Keep in mind that I am not an electronic so this solution could be not the best one, it worked and tested. 

Items
  • Leds strip
  • Arduino
  • N-Channel MOSFET, my was 2N7000
  • 200 ohm resistor
Schema


Code

void setup() {
    pinMode(5,OUTPUT);
    pinMode(6,OUTPUT);
}

void loop() {
 analogWrite(5,0);
 for (int i = 0;i < 260;i++) {
    analogWrite(6,i);
    delay(10);
 }
}

Saturday 12 January 2013

Converting a freezer into a Lipton icetea dispenser

Introduction
This project could sound weird because why would I want to use a freezer instead of a fridge? why would I want to make a Lipton IceTea dispenser and what does it mean?
There are a lot of questions about this project and there are only two answers:

  1. My friend bought the wrong fridge to store some drinks but he only realised this when we got home. It wasn't a fridge but a freezer!
  2. We couldn't be bothered to get up, open a bottle and refill our glass, instead we prefered pressing a button and having our glasses automatically refilled.
If you want to reproduce this project you can avoid to buying a freezer instead buy a fridge and remove some other components.

Transforming a freezer to a fridge
I thought that the best option to don't waste more money and keep the bottle in a liquid state, is to control the temperature inside of the freezer. I got one temperature sensor DHT22 and attached a relay to the power socket, by doing this I could switch the power on and off when the temperature was too high or too low and the bottle didn't become a big block of ice.

Back of the freezer where was connected the sensor to turn on/off by the sensor of temperature

I connected the sensor and the relay to the Arduino, I made a little script that keeps it switched on because if the temperature drops below 5° to 0°C it stops working and becomes a freezer.
The two wires ( Brown and White ) are going to connect into the relay



IceTea distribution 
This is the most expensive part of the process, I had to make one hole on the fridge to ensure the pump works effectively. The tube is used to get the liquid from the freezer.

  • Holes
The freezer was not equipped with a hole to pass one hose, that means that I had to use a drill to make it. 
There is one hole, on the  lower part
To ensure that the warmth was not dispersed through these holes, I had to use some kind of isolant and I chosen the product Sugru.
  • Water pump
The pump was the main part of the project as it has to move the liquid from the fridge into the glass, but I had to make sure that the pump was FDA tested!
If you don't have a certificated pump , you could drink a poisoned liquid. 
I hadn't check this part of the project when I bought the pump( see the picture below ). Fortunately I found that it's very dangerous to buy the cheapest one because you didn't want to spend 10-20 pounds more.


In the end I had to contact the company TOPSFLO that had certificated pumps and I bought one for 30 pounds ( included the shipping cost ).
This was the pump ( website ):


To connect this pump with your Ardiuno, please have a look at this tutorial: http://bildr.org/2012/03/rfp30n06le-arduino/.
  • Hose
I bought two types of hoses, one of them is used to connect the bowl to the pump ( 13mm ) and the second one is connect the pump to outside of the fridge ( 9mm ).


I also bought a tap hat gourmet to fit the hose into the bowl, in that way I can take off the tube and wash the container without cutting anything. 

  • Push buttons
I have chosen to install two push buttons, the first one fills the glass in one shot and the other one is working as a normal button, when you press it the pump is working and when you release everything stops.



  • Valves
The system could work without any valves because there wasn't any problem of functionality, the only problem was that you wouldn't  drink something that was not isolate and kept into a bottle.
If I didn't use a valve, the liquid will be the same as leaving the bottle open in a fridge.

I found the non return valve for the external tube.


 Prototypes

Demo 1



Demo 2



How refill the fridge


Arduino messy wiring

The wiring was a little bit messy on the back of the fridge but I want to explain what I have connected there:

I have made a own PCB that I have attached:
  • MOSFET: switch the pump on/off
  • Resistents: DTH22 needs one and the pump
  • 5V and Ground: these two just to have a specific place to get the power and ground
I have connected the relay to the Arduino to turn on/off the fridge and 2 wires to get an analog input of the two buttons.





I had to make sure that all holes were isolated and for that I have used the awesome product Sugru that was a kind of silicon and it makes a perfect insulating.



Sunday 6 January 2013

Webcam over 3G with Raspberry PI

Description
This project was about a personal challenge that my Dad asked me to do it.
Everything started more than one year ago when I was trying to do it with Arduino but I lost a lot of time because I couldn't make everything works as fast as Raspberry does.
I decided to move on Raspberry PI and everything became easy and fast, in a few days I had made 70% of the project.

Let's talk about the project, my idea was to create a remote webcam that I could control it over the 3G network, because I wanted to install it on my mountain's house and I don't have an internet connection.
The camera have to be equipped with:
  • 2 servos: move left/right and up/down from a web interface
  • one temperature sensor: getting information and store them in a file
  • one motion sensor: something like a little CCTV that will send me message and picture when someone is close to it
Obviously everything have to be very well thought for any little problems,  and in case that something goes wrong, I had to make sure that I can access to the camera and fix it.





Raspberry : http://amzn.to/2pQXDUw
Battery: http://amzn.to/2qeENrz
Camera: http://amzn.to/2pRgkr5

Simple Schema
Schema



Web Interface
I made a little website to communicate with the camera, I can move it LEFT/RIGHT and UP/DOWN by pressing 4 buttons.
I can get the current temperature, start live streaming, change motion alerts and manager all files about camera pictures and some other files.
I'd like to improve everything with a proper client side using another Raspberry Pi, small screen and a few buttons.




3G Modem
I was looking for a good and cheap 3G modem that could work with Raspberry PI and read/send message, what I found was the HUAWEI E3131 that had a web interface and a simple API to control it.
I made a little wrapper library that I could send commands from my Python code, something like: connect to 3G network, send message, read message, etc..
I really recommender this modem because it was cheap, unlocked and easy to use!

Python library for HUAWEI E3131





Servo Pan and Tilt
I had to build my own Pan and Tilt system because the position that I have chosen is not simple one.
I came up with a solution to put everything in a PVC tube and attached one servo on the top to move the whole structure and the second to move the camera up and down.

First prototype:



Webcam
I have used fswebcam to capture snapshot from the webcam and I made a little wrapper in Python to execute this command with specific parameters.


Temperature sensor
I have chosen the DHT22 as temperature sensor, because it was easy to hook up with Raspberry and I have used this sensor on my previous projects with good results.
What I thought was to implement this sensor to store different temperatures through the whole year and have a little chart about the weather on my mountain.

Motion sensor
The motion sensor was attached to my Raspberry via one digital pin, there was a thread that was checking every 4 seconds if someone was there and send me two kind of alert: SMS and upload the picture.
I have implemented some functions to remove any kind of alert in case that the motion sensor will be trigger for stupid reasons.

AutoSSH
This was my special army to access on my Raspberry even if I was connected to a 3G network, because you know that you can't open any port as you can do on your own modem.
Basically I had to setup a ssh key to connect to my server without insert the password and create a system to active and de-active the session.
I came up with an external service with Python that will start the service if the internal service was crashing. You never know if the main script will working properly or your thread will stop to work, so this was my second security system to access and fix it.

External Power
Raspberry has only one micro usb port to give power to the whole system, so I had to solder 2 wires directly to the board.
I found the instruction on this website: http://www2.pmb.co.nz/blog/computers/raspberry-pi-direct-5v-power-wiring-modification/ to understand which pins were the 5+ and GND.
I suggest to mount  a fuse between the battery and the Raspberry, in case that something goes wrong and you don't burn your board.


Solar panel
The power source was a little problem because at 2'000 meters over the sea you don't have a normal power socket to plug your devices, so I bought a solar panel from EBay and a car battery.
I have chosen the car battery because you have 2 years of warranty and I was looking for something very high capacity and I found one with 55mAh at 12V.






Conclusion
I am testing this configuration at home before move everything at 2'000 meters, so I can be sure that at least for a month I can connect to it, get some pictures and fix any crashes that will came up.