Loading...
  Show Posts
Pages: 1 2 3 [4] 5 6 ... 22
46  Using Arduino / General Electronics / Re: Arduino DUE: max current from Vin pin on: February 09, 2013, 12:44:15 pm
Drawing that much current effectively mutes the 47uF capacitor.
It sounds like you want to drive a high current load, motor solenoid etc. 
Driving such loads will likely cause problems with the controller as dips in Vin will effect the Arduino.
If you need external high current capability use 2 or more power supplies with common grounds.
47  Using Arduino / Sensors / Re: Detecting 240v on: February 09, 2013, 02:10:00 am
Quote
I'd like to be able to detect whether there is voltage across the terminals leading to the thermostat on the hot water tank.
Quote
I want to detect that current
Do you want to detect the Voltage or Current?

You can detect the voltage with an opto isolator which is monitored by the Arduino.
48  Using Arduino / Motors, Mechanics, and Power / Re: Arduino Micro with SN754410NE DIP-16 H Bridge on: February 09, 2013, 01:53:54 am
I have always made it a policy to always use a separate power supply for the controller and the motor!

Quote
If I use 7v as the AC/DC input power (see diagram), then the motor starts to work erratically.
I would first confirm the 7 volt power supply is not being pulled down too low.

Quote
SN754410NE H Bridge
This is rated at 1.2 amps 2 amps peak. How much current is drawn by the motor if you connect it directly to 7volts?

Is this all the code you have?
49  Using Arduino / Programming Questions / Re: physical button time change on RTC on: February 08, 2013, 01:59:36 am
Quote
[wiring]:
A4 connects to   RTC: SCL
A5 connects to   RTC: SDA
GND to GND
5V to 5V
SQW does not connect to anything (yet?)
Arduino Uno
A4 = SDA  ---->  RTC   SDA
A5 = SCL  ---->  RTC   SCL
GND ---------->  RTC   GND
5V    ---------->  RTC   5V

For example if you use        T1360280782
You will see                        23:46:23 7 2 2013      on your serial monitor.


50  Using Arduino / Project Guidance / Re: counter with 7 segment LED serial display on: February 06, 2013, 07:29:33 pm
Quote
This link has the ZIP file containing the: sketch: Readme: PNG & parts list he is using.
He is using TTL serial communications.

Your display has sample code in the 4th image at: http://www.amazon.com/gp/product/B00A8H6BQ2/ref=oh_details_o02_s00_i00

I believe your Data Sheet for the display is here and it is SPI communications.
http://www.ams.com/eng/Products/Lighting-Management/LED-Driver-ICs/AS1108
51  Using Arduino / General Electronics / Re: How do you finish a project on: February 06, 2013, 06:34:51 pm
Look for BOX or PROJECT BOX
https://solarbotics.com/search/box/
https://www.adafruit.com/index.php?main_page=adasearch&q=box
http://www.jameco.com/webapp/wcs/stores/servlet/StoreCatalogDrillDownView?langId=-1&storeId=10001&catalogId=10001&freeText=project%20box&search_type=jamecoall
52  Using Arduino / Project Guidance / Re: counter with 7 segment LED serial display on: February 06, 2013, 06:24:20 pm
Quote
4 digit-7 segment LED display
Give us a link to this item.

Quote
#include <LiquidCrystal.h>
Why are you using this?
53  Using Arduino / Project Guidance / Re: DS1307 as an alarm. on: February 06, 2013, 06:20:58 pm
If you haven't already seen the Time library and the included TimeAlarms libraries you may benefit by looking at them:
http://playground.arduino.cc/Code/time
http://answers.oreilly.com/topic/2704-how-to-create-an-arduino-alarm-that-calls-a-function/
54  Using Arduino / Motors, Mechanics, and Power / Re: Motor shield R3 on: February 01, 2013, 12:59:54 am
Give us a link to your motor shield...
55  Using Arduino / Motors, Mechanics, and Power / Re: Solenoid Issues on: February 01, 2013, 12:58:01 am
What is the resistance of the Solenoids?
What is the voltage rating of the Solenoid?
If you swap the transistors does the problem swap?
When the Arduino o/p is at 5 volts, what is the voltage at the collector (to GND) of the 2 transistors?
It is hard to see the breadboard wiring, please draw a schematic of the project.

The motor may be a lower current rating therefore it works.
Note: the gain of the 2N2222 is 75 but it can vary.
56  Using Arduino / Project Guidance / Re: Measuring voltage over a resistor on: January 29, 2013, 01:13:36 pm
See ideas for layout:
57  Using Arduino / Programming Questions / Re: Set a output to come on then stay off till some point. on: January 29, 2013, 12:41:58 pm
As a side issue, when it comes to important stuff like flooding etc. you should have a backup circuit.
Something like a float/limit switch independant of your controller.
It would provide a cutoff to the filling of the tank at an extreme level.
58  Using Arduino / Project Guidance / Re: Measuring voltage over a resistor on: January 29, 2013, 12:03:00 pm
Please attach a drawing or schematic of your project.
59  Using Arduino / Programming Questions / Re: Reading chars and storing into an array (!) on: January 28, 2013, 10:27:10 pm
http://arduino.cc/en/Reference/Array
http://www.thebox.myzen.co.uk/Tutorial/Arrays.html
Code:
//Lets say you have an array:
char dtmf [20]
int i = 0;

setup()
//some code

loop()
{
// some code
          irqState = digitalRead(STD);                //Get the first trigger tone
          if (irqState == 1)
          {    
                dtmf[++i]= mapKey();
                delay(100);
          }

// lets say an # starts iteration code thought dtmf[0] to dtmf[maximum] to process through the values
// don't forget to set i = 0 when you are ready to start capturing again.


} // END of loop
60  Using Arduino / General Electronics / Re: Best magnifier for soldering? on: January 27, 2013, 04:23:50 pm
Quote
I probably breathe a lot more solder fumes than I should.
I have a small fan blowing them away.
Pages: 1 2 3 [4] 5 6 ... 22