Show Posts
|
|
Pages: [1] 2 3 ... 133
|
|
3
|
Using Arduino / General Electronics / Re: Superglue instead of solder?
|
on: December 06, 2012, 01:49:19 am
|
Wirewrapping is quick & easy. A good solder joint starts with a good mechanical joint - wirewrap makes that mechanical joint to start, and is quick & easy to change/fix if needed.
Not so quick and easy if you solder it after wirewrapping.  I'd have doubts whether you'd ever get it apart again.......
|
|
|
|
|
4
|
Using Arduino / Project Guidance / Re: Reading more than one sensor in one analog pin
|
on: December 04, 2012, 06:19:02 am
|
With a RC circuit its possible to 'emulate' an analog input with a pure digital pin with the 'R' being made by your nail in the soil.. In simple terms you set the pin to output, set it high to charge the capacitor, switch it low and then to input and time how long it takes to discharge to the point where it registers as being a low. The lower the resistance of what is connected to the pin, the quicker it discharges. You'd need to use something (multimeter or an analogue pin) to determine an approximation of 'R' the (resistance of your nail through the soil) to determine a suitable value for C. Plenty of stuff on google to work it out but heres a start : http://www.allaboutcircuits.com/vol_1/chpt_16/4.html. The digital input will register as low when it reaches approximately 2.5 volts. This probably appeals more if you're a cheapskate........... 
|
|
|
|
|
5
|
Using Arduino / Installation & Troubleshooting / Re: 3.3V output only giving 2.55V
|
on: November 24, 2012, 10:14:29 am
|
The default Analog reference is to use VCC which is nominally 5V but in actuality is whatever is coming out of the USB port of the computer. If you plugged the 3.3V output into the AREF pin of the arduino and told it to use it analogReference(EXTERNAL); It will be reading a voltage relative to whatever is going in the AREF pin (3.3 volts if you connect it to 3.3 Volts).
|
|
|
|
|
6
|
Using Arduino / Project Guidance / Re: Questions about Arduino
|
on: October 28, 2012, 12:11:35 pm
|
 Lesson one : The chip circled in Red on the Pi is surface mount (a SMD - Surface Mount Device). The chip circled in blue is what used to be standard many years ago - a through hole chip mounted in a socket which is soldered on the reverse side with the legs of the socket going through holes. They are relatively easy to mess around with a soldering iron and cheaply available stripboard or home made circuit boards. SMD needs specialist gear that a hobbyist isn't likely to have (or even afford). In a mass production environment, the SMD lends itself to automation and hence cheap to produce in quantity.
|
|
|
|
|
7
|
Using Arduino / Project Guidance / Re: Real time wireless video
|
on: October 28, 2012, 11:53:29 am
|
My question is could the arduino wifi sheild transmit real time video to a laptop via a router on a wireless LAN network? Not a hope in hell, the arduino lacks the required horsepower to process video in real time by several orders of magnitude. Assuming you're connecting an arduino to said wifi shield of course....
|
|
|
|
|
9
|
Using Arduino / Project Guidance / Re: Questions about Arduino
|
on: October 28, 2012, 11:40:21 am
|
|
I have around a dozen Arduinos including thiose I made myself, owning more than one is very useful, especially when it comes to burning bootloaders (google it) and trouble shooting. One of my dozen is an SMD clone, it has its uses but I can't take the chip off it......
|
|
|
|
|
10
|
Using Arduino / Project Guidance / Re: Questions about Arduino
|
on: October 28, 2012, 11:33:08 am
|
|
Depends on whether you want to pull the chip out of it or not......
I don't own a Leonardo, but I know they don't do an old school 28 pin chip in an old school 28 pin socket version. They used to do a SMD (surface mount) version of the arduino Uno, I don't know if its still available.
If you wanted to take a surface mount chip off a bourd it involves special kit and melting solder.......
|
|
|
|
|
12
|
Using Arduino / Project Guidance / Re: Questions about Arduino
|
on: October 28, 2012, 11:16:20 am
|
The chip in my home brew is mounted on stripboard, the chip is the same one used in most Deumilanove/Uno/numerous clones. The Leonardoi is surface mount and wouldn't fit, Surface mount is tricky on a small scale hobbyist level. At a push you can program the chip on a Uno, lever it out of the socket and stick in it your own board. Its just about practicalities..... The other picture shows it mounted on what I designed it for : mounting on a Raspberry Pi. http://www.raspberrypi.org/faqs
|
|
|
|
|
13
|
Using Arduino / Installation & Troubleshooting / Re: Complete newbie - completely thick - LED not lighting!
|
on: October 28, 2012, 11:02:05 am
|
|
LED's are polarised. They need to be connected the right way round to work. Plugging one into GND & pin 13 is not a good idea on an arduino made in the last 5 years (including the Uno). There is no current limiting resister in circuit. Its completely unnecessary any way, any arduino made in the last 5 years (The Uno) will have one on board, already wired and working. Its usually labelled 'L'. The tutorial you've found is out of date and doing it today can damage the Arduino. You may have already damaged the output on Pin 13.
|
|
|
|
|