• Turn Photos Into 3D Objects


     

     

    Learn how to take 2D photos and automatically convert them into 3D models and them print them out as 3D objects.
    To download the project files, please visit the project page here:
    Download links used in the video:
  • Cool Geek Stuff June 6th, 2012


     

    Tutorial Of The Week –  http://www.youtube.com/watch?v=v4ux3OccSHI

    Install Mac OS X on Windows 7
    by TheRekash2009
    Cool Site of the week – http://www.w3schools.com/
    W3 School
    Free tutorials in all web development technologies
    Game Of The Week – http://www.playmapscube.com/
    Google Cube
  • Learn How To Use An Arduino


    [vc_row][vc_column width=”2/3″][vc_separator][venera_framed_image content_type=”video” css_animation=”appear” frame_type=”browser” slider_engine=”flexslider” video_link=”https://www.youtube.com/watch?v=PWKYYJu4yVw” browser_url=”https://www.youtube.com/watch?v=PWKYYJu4yVw”][vc_separator][/vc_column][vc_column width=”1/3″][/vc_column][/vc_row][vc_row][vc_column width=”2/3″][vc_tabs][vc_tab title=”About This Project” tab_id=”1402713028-1-39e9a4-2f88123b-77946048-92948c2b-0e6b”][vc_column_text]

    The easiest way to make and control your own electronics is through a device called an “Arduino”. This video shows you the basics of getting started with it.

    [/vc_column_text][/vc_tab][vc_tab title=”Parts and Code” tab_id=”1402753910272-3-8123b-77946048-92948c2b-0e6b”][vc_button title=”Download The Arduino Software” target=”_blank” icon=”none” size=”btn-huge” href=”http://arduino.cc/en/Main/Software”][vc_column_text]

    Obtaining An Arduino

    Arduino’s can be purchased online at varying prices. Amazon or Ebay will vary greatly in prices. The price also depends on the version of Arduino that you purchase. The current version is the Uno and the older version is the Duemilanove. Other types of Arduino exist as well, such as an Arduino that you can build yourself, Arduino Nano, Lilypad, Arduino BT and a lot more.

    Version Price
    Arduino Uno $29.96

    Installing the Software

    You can download the Arduino software from here. It’s available for Windows, Mac and Linux. It downloads in a zip file, so you will need archiving software such as 7-zip to unzip it. Then you will need to just click on the “Arduino” program icon to launch the program.

    Arduino Uno board

    The first thing you want to do is check to make sure the program is set to match the Arduino board that you are using. You can find out the type of board you have by looking on either the top or the bottom of the board. Then go to Tools>Boards from the menu and select your board.

    Also you need to make sure the correct serial port is selected. This section is also accessed from the Tools menu. If the option is greyed out, then that means your Arduino board is not connected properly. You can find some common troubleshooting techniques below. For most new computers that only have one Arduino connected to them, there will most likely only be one serial port to select.

    Creating A Program

    The Arduino uses C/C++ programming language, so if you’re familiar with those languages you’re already way ahead of the curve. The Arduino program basically allows you to write a program, upload it to your Arduino device and save it for later use. The programs tell the Arduino what to do, how to control things, what information to retrieve, etc. You can find lots of sample programs by going to File > Examples. The sample program used in the video can also be found at File > Examples > 01.Basics > Blink. The final code can be seen here:

    int led = 13;
    
    void setup() {
      pinMode(led, OUTPUT);     
    }
    
    void loop() {
      digitalWrite(led, HIGH);
      delay(1000);
      digitalWrite(led, LOW);
      delay(1000);
    }
    

    As you become more advanced with creating programs and adding devices, you will need to start using different Arduino libraries. The make is easy to extend the functionality of the Arduino in amazing ways.

    Connecting Devices to the Arduino

    The sky is the limit when it comes to what can be connected to the Arduino. But you must know how to connect them. There are lots of input/output ports on the Arduino. Some are analog and some are digital. Please refer to the online documentation to know which pins are best for your project.

    Powering the Arduino

    The Arduino runs off of 5 volts, so whenever it’s connected to your computer via USB, it can power itself. If you wanted to run it separately from your computer, then you would need to supply it with 5 volts via a battery pack or by wiring 5 volts of current through the Arduino’s power pins.

    Troubleshooting

    Serial Port option is greyed out

    This generally means that your Arduino board either is not connected properly or not installed properly. Check your USB cord and the connection to make sure that it is connected properly. On Windows 7 and some Vista machines, you will need to install the drivers for the Arduino before it works. To do this, open up your Device Manager (Start>Search>”Device Manager”) and look for any device that has an exclamation point or question mark beside it. Right click on that device and choose “Update Driver”. Then browse to the “drivers” folder in your Arduino installation folder. After clicking next, it should install the drivers.

    Program does not upload to Arduino

    There three main reasons this will happen:

    1. The board is not connected.
    2. The board is not installed correctly (see above).
    3. The board you are using is different from the board selected in Tools > Boards.

    The LED does not blink

    Please check the previous troubleshooting questions to see if they resolve this problem before continuing. If it still is not working, then the LED is not connected properly. Make sure the positive leg (the longer LED leg) is connected to port 13 and the negative leg (on the same side as the flat part of the LED) is connected to GND. It will not work in any other ports due to port 13 being the only one that has a built-in resistor.

    [/vc_column_text][/vc_tab][vc_tab title=”Important Links” tab_id=”1402753981900-3-10123b-77946048-92948c2b-0e6b”][vc_column_text] Help support my channel: http://www.patreon.com/tinkernut Follow Tinkernut! Google + Facebook Twitter [/vc_column_text][/vc_tab][/vc_tabs][/vc_column][vc_column width=”1/3″][/vc_column][/vc_row]

  • Weekend Hacker: Make A Secret Encrypted Drive


    Make sure your private documents are completely secure. This episode deals with not only encrypting your files, but also hiding them in a hidden volume.
    Links used in this video:
  • Cool Geek Stuff – May 16th, 2012


    Cool geek stuff for the week of May 16th, 2012
    VIEW AND VOTE FOR YOUR FAVORITE LINKS!
    http://www.tinkernut.com/tinkernerdz

    Tutorial of the week:
    http://www.youtube.com/watch?v=rY6byKbAgGQ
    Install the Android OS on a PC using VirtualBox

    Game of the week:
    http://www.realmofthemadgod.com/
    Realm of the Mad God is a massively co-op 16-bit action RPG that drops you into the thick of the fight in a world overwhelmed by monsters

    Cool Site of the week:
    http://www.youtubedisco.de/
    Mix and Remix Youtube videos and become your own internet VJ!

  • Youtube Disco


    Mix and Remix Youtube videos and become your own internet VJ!
  • Realm of the Mad God


    Realm of the Mad God is a massively co-op 16-bit action RPG that drops you into the thick of the fight in a world overwhelmed by monsters

  • How to install android OS on PC


    By TechHelp3000: Install the Android OS on a PC using VirtualBox
  • Candle Powered Phone Charger


    [vc_row][vc_column width=”2/3″][vc_separator][venera_framed_image content_type=”video” css_animation=”appear” frame_type=”browser” slider_engine=”flexslider” video_link=”https://www.youtube.com/watch?v=17VU2FkfDOM” browser_url=”https://www.youtube.com/watch?v=17VU2FkfDOM”][vc_separator][/vc_column][vc_column width=”1/3″][/vc_column][/vc_row][vc_row][vc_column width=”2/3″][vc_tabs][vc_tab title=”About This Project” tab_id=”1402713028-1-39e9a4-2f888a6d-d37d835b-230e”][vc_column_text]

    According to the first law of thermodynamics, heat that flows from a hot object to a cold object is energy. An invention called a Peltier Device takes this energy and converts it to a form of electricity. Peltier devices can be found inside USB drink chiller/heaters. Using these principals, we can create a device that charges a cell phone using the heat from a flame lit lamp.

    [/vc_column_text][/vc_tab][vc_tab title=”Parts and Downloads” tab_id=”1402713028-2-39e9a4-2f888a6d-d37d835b-230e”][vc_column_text]

    Parts List

    Here’s a main list of parts and approximate prices:

    Part name Price
    USB drink chiller $10-$20
    Sterno Cooking Fuel $10-$20
    Single AA Emergency Phone Charger $10-$20

    If you want to create a metal stand like I did in the video, here are the parts I used that I found at a local hardware store:

    Part name Quantity
    1/4 Inch Hex Nuts 8
    1/4 Inch Threaded Metal Rod (7-8 inches) 4
    Electrical box face plates 2
    1/4 Inch washers 4
    1/4 Lock washers 4

    Although it’s not required, it’s helpful to have a Multimeter so that you can read what voltage is being output.

    [/vc_column_text][/vc_tab][vc_tab title=”Assembly” tab_id=”1402753910272-3-88a6d-d37d835b-230e”][vc_column_text]

    Obtaining the Peltier Device

    Peltier Devices

    Inside of the USB drink chiller is a peltier device. In it’s current state, it will take electrical impulses and cool down one side of the device while the other side of the device heats up. This is what cools down the drink that is sitting on top of it. But we’ll be using it for the exact opposite of this: we’ll be heating up one side of the peltier device and cooling down the other so that it outputs electricity.

    To remove the Peltier device, just unscrew the bottom of the USB drink chiller. You will probably see a bunch of wires and a heat sink. Unscrew the heat sink, if necessary, and underneath it you will find the Peltier device. You should see a black wire and a red wire coming from the Peltier device. Cut these wires being sure to leave at least a few inches attached to the Peltier device.

    Constructing the stand

    The metal stand serves multiple purposes. Not only does it provide a nice platform for the Peltier device to sit above the fire, but it helps distribute the heat more evenly across the Peltier device.

    Metal Stand Parts

    I used two metal electrical box faceplates to increase the thickness and heat distribution. Most faceplates have 4 holes or notches so that you can easily attach screws, or in our case, metal rods. On each threaded metal rod, place one nut and one lock washer. Adjust the nut and lock washer so that they’re about 4-5 inches from the bottom of the metal rod. Then slide the rods through each of the holes on the faceplates so that the faceplates rest on the lockwashers. The faceplates should now be standing on the metal rods about 4-5 inches above the surface of the table. Lastly, place one washer and one nut over the top of each metal rod and screw them down to secure and stabalize the faceplates.

    Completed Metal Stand

    The Set Up

    The set up is pretty simple. With your stand, place the Peltier device on top of the faceplates with the wires safely hanging over the side. Place a lit flame underneath the faceplates so that it starts heating up the Peltier device. For best results, place a heat sink directly on top of the Peltier device to help keep the opposite side cool.

    If you have a multimeter, connect it to the two wires of the Peltier device to get a voltage reading.

    Adding the Voltage Boost

    Since it’s hard to get the Peltier device to output more than 1.5 – 2 volts, we need to use a voltage booster to jump it up to 5 volts, which is the standard voltage required to charge most cell phones. The necessary voltage booster can be found in an Emergency Phone Charger that uses only one AA battery. For mine, it was very simple to unscrew the Emergency Charger and remove the component that boosts the voltage.

    Noticing which part of the AA battery (plus or minus) touches which part of the voltage booster will allow you to determine which side is positive and which side is negative. Once that is determined, you can use alligator clips, or soldering equipment to attach the negative wire of the Peltier device to the negative terminal of the voltage booster. Do the same for the positive wire and the positive terminal.

    Go ahead and plug your phone into the voltage booster. Once the voltage of the Peltier device reaches 1.5 volts, the phone should start charging.

     

    [/vc_column_text][/vc_tab][vc_tab title=”Important Links” tab_id=”1402753981900-3-108a6d-d37d835b-230e”][vc_column_text]

    Help support my channel:

    1. http://www.patreon.com/tinkernut
    2. Follow Tinkernut! Google +
    3. Facebook
    4. Twitter

    [/vc_column_text][/vc_tab][/vc_tabs][/vc_column][vc_column width=”1/3″][/vc_column][/vc_row]