|
1082
|
Using Arduino / Project Guidance / Re: How do I prevent video interference caused by electric motors
|
on: January 05, 2013, 06:25:08 pm
|
|
So wait, you were listening for static changes on a channel that already had static? -_^ Use a static free channel, then use the motor.
Just try grounding the motors metal casing. If it doesn't solve it, at least to you tried something. What would be more helpful is if you show us an actual picture or video of your setup. Show us your wiring.
Give us something, otherwise were not going to continue to help you.
|
|
|
|
|
1083
|
Using Arduino / Project Guidance / Re: How do I prevent video interference caused by electric motors
|
on: January 05, 2013, 05:51:51 pm
|
|
If your not sure if the voltage is dropping or not, use a volt meter to confirm that. However, you did say that you put the video monitor on a different power supply and it did nothing, SO maybe voltage drop is not the problem. You are most likely having a shielding issue. Do like G_Mike says, and rewire it correctly.
If you want another way to test the RF from the motor, is to simply use an AM radio. Set the radio to a clear station, and try to turn the motor on and off. If you get interference when the motor is on, then you need to shield the motor. My guess is the motors metal casing is not shielded. What you can try is run the motor with the radio on, then use a wire to touch the metal casing to ground. If the interference goes away then you know you have a shielding issue.
|
|
|
|
|
1086
|
Using Arduino / Project Guidance / Re: Single shot
|
on: January 05, 2013, 12:20:30 pm
|
|
@everyone
Again it was only meant to be pseudo code, not a working code! The OP sent me a personal message saying it wasn't working, so it tested it myself, and it DIDN'T work. (Obviously) So I messaged him back the actual working code, and I got back "Thankyou it works!"
@PaulS
I did and I did.
|
|
|
|
|
1090
|
Using Arduino / Project Guidance / Re: DC Fan Help
|
on: January 04, 2013, 09:21:39 am
|
|
You might need a capacitor to smooth out the output signal of the transistor, going to the motor. Just put a capacitor from the between the motor contacts, make sure you wire it correctly (polarized). It should get rid of any noise, unless the noise is not from the PWM but from a defect in the motor itself.
470uf should be more than enough.
|
|
|
|
|
1092
|
Using Arduino / Project Guidance / Re: Single shot
|
on: January 03, 2013, 04:24:08 pm
|
|
I sent you what to change. Keep in mind that what I gave you before was only meant to be pseudocode, an example, not the actual working code.
I am now a GOD member!
|
|
|
|
|
1095
|
Using Arduino / Project Guidance / Re: Single shot
|
on: January 03, 2013, 11:59:57 am
|
void loop() { // read the value from the soil detector: sensorValue = analogRead(sensorPin); if(sensorValue<400) { !latch; // This detects whether the switch changed or not latch ? LED_Burst() : (/*Just smile and wave*/ ); //conditional statement, compressed IF/ELSE statement } } //problem was here, you needed this
If you tried to compile it in the arduino software, you would have gotten an error in the LOOP() telling you, you need a closing bracket " } " before void LED_Burst()
|
|
|
|
|