Loading...
  Show Posts
Pages: 1 ... 7 8 [9] 10 11 ... 13
121  Using Arduino / LEDs and Multiplexing / Re: Dimming an LED strip on: January 19, 2013, 10:05:07 pm
Why don't you first write the code? With the transistor the code would be the same as PWM-ing an LED.
122  Using Arduino / LEDs and Multiplexing / Re: Dimming an LED strip on: January 19, 2013, 08:27:30 pm
Yeah you can drive it with a transistor or mosfet. I recommend the IRF540N mosfet.
123  Using Arduino / Motors, Mechanics, and Power / Re: Hacking Ac motor with Arduino and Solid State Relays on: January 19, 2013, 07:45:47 pm
Nice! I took apart a washing machine and got a huge ac motor with a nice ac capacitor as well. I'll post photos latter.
124  Using Arduino / Motors, Mechanics, and Power / Re: SSR PWM` on: January 19, 2013, 07:28:12 pm
I'm sorry, what is AC zero crossing time, and what does a Voltage Zero Crossing Detector and triac do?
Sorry for the trouble.
125  Using Arduino / Motors, Mechanics, and Power / SSR PWM` on: January 19, 2013, 07:44:28 am
I really want to be able to PWM my 220v ac lights. I know I can't do this with the traditional relays, they are not fast enough. I was just thinking if it can be done with solid-state-relays?
Many thanks
126  Using Arduino / Interfacing w/ Software on the Computer / Re: Interface Arduino UNO to Visual Basic 2008 on: January 19, 2013, 05:24:37 am
Sure! I also had an urge to learn how to use Visual Basic with Arduino.
Look at this:
I wrote this with visual basic. You first drag the "SerialPort" object from the toolbox. Put this in the very beginning of the code:
 
Code:
Imports System
Imports System.IO.Ports
Imports System.Threading
Then in Public Class Form 1 insert the following code:
Code:
Dim WithEvents Arduinoport As SerialPort = New  _
    System.IO.Ports.SerialPort("COM5", _
                                9600, _
                                Parity.None, _
                                8, _
                                StopBits.One)
replace "COM5" with your desired port, 9600 with the desired baud rate.
Then, to send something to the serial port, use the following line:
Code:
Arduinoport.Write("the desired text")
good luck! Google is your friend.
127  Topics / Home Automation and Networked Objects / Re: Webpage sending information to serial port on: January 18, 2013, 07:31:21 pm
How do I install Bitlash Commander in windows? I can't open a terminal window.
128  Topics / Home Automation and Networked Objects / Re: Webpage sending information to serial port on: January 18, 2013, 07:27:55 pm
Thanks a lot! I already have visual studio.
Oh, I am also trying to sart an apache server with XXAMP.
Thanks!
129  Topics / Home Automation and Networked Objects / Re: Webpage sending information to serial port on: January 18, 2013, 07:16:57 pm
Wow thanks @billroy! I managed to use bitlash with the Arduino serial monitor. But how do I use it over the network?
130  Topics / Home Automation and Networked Objects / Re: Webpage sending information to serial port on: January 18, 2013, 09:21:07 am
Bitlash looks really cool! But does it work with windows?
131  Topics / Home Automation and Networked Objects / Re: Webpage sending information to serial port on: January 18, 2013, 09:07:48 am
Thank you all! Due to my budget, I don't think I can afford an ethernet shield yet.  smiley
132  Topics / Home Automation and Networked Objects / Webpage sending information to serial port on: January 18, 2013, 05:11:09 am
Hi all! I don't have nearly no experience on webpage design and stuff like that. I have dreamweaver, and I once tried to build a website. I was just thinking if I use XAMPP, can I build a webpage that can be accessed within my local area network, that can send something to the serial port my Arduino is connected to?
Thanks a lot.
Habib
133  Using Arduino / Motors, Mechanics, and Power / Re: First Stepper Motor Project - guidance requested on: January 18, 2013, 04:42:59 am
Seteppers are quite expensive. I think you only need a geared dc motor. You can accurately control the angle with a stepper. The geared dc motor also has a lot of torque.
134  Using Arduino / Motors, Mechanics, and Power / Re: Is it possible to get servo angle ? on: January 18, 2013, 03:04:26 am
What you need is an encoder.
135  Using Arduino / Project Guidance / Re: My body gives Electricity when i trying to acquire signal by AD620 inst. amp ? on: January 17, 2013, 07:04:37 am
Oh I thought it was about 400k for females and 600k for males.

EDIT
So I guess I can use myself as a pull-down reistor if I run out of resistors!
Pages: 1 ... 7 8 [9] 10 11 ... 13