I am in. I forgot my password for few months, but i am in.
I think i had asked for this once but i cant find the topic, so
I need a cannon to scarry the rabbits, it will be a gas cannon, it has to make noise every 10 min but i must be able to set the time. What i do not know to make is that controller that :
1. opens the gas valve for few sec and close it ( i must have a way to set it also)
2. wait for a while so the gas can mix inside
3. make the spark ( i got the solution)
4. reapeat the process over and over again
5. in the morning it should stop by itself ( i got a solution for this with some sun pannels ......)
the controller will work with 12 V car battery
i am looking for a way to make it by using parts already made, i got few ideas but i can not write them in english....
I know those controllers can be found on e-bay, but there is no e-bay here.
agriculture aplication.
- bravootome
- Specialist 3
- Posts: 334
- Joined: Mon Oct 14, 2013 11:11 am
- Has thanked: 1 time
- Been thanked: 2 times
come undone
- mrfoo
- Specialist 2
- Posts: 275
- Joined: Wed Apr 29, 2015 11:05 am
- Has thanked: 84 times
- Been thanked: 90 times
Open / close the gas valve : You need a solenoid valve, relay, and a controller to action the relay.
Spark : automotive coil, spark plug with opened gap, relay, 12v supply, something to trigger the relay again.
I'd suggest using something like a teensy microcontroller, a couple of transistors to drive the relays, and a bit of home brewed software.
Spark : automotive coil, spark plug with opened gap, relay, 12v supply, something to trigger the relay again.
I'd suggest using something like a teensy microcontroller, a couple of transistors to drive the relays, and a bit of home brewed software.
- bravootome
- Specialist 3
- Posts: 334
- Joined: Mon Oct 14, 2013 11:11 am
- Has thanked: 1 time
- Been thanked: 2 times
mrfoo wrote:Open / close the gas valve : You need a solenoid valve, relay, and a controller to action the relay.
Spark : automotive coil, spark plug with opened gap, relay, 12v supply, something to trigger the relay again.
I'd suggest using something like a teensy microcontroller, a couple of transistors to drive the relays, and a bit of home brewed software.
Thanks for the answer but i know i need a solenoid valve, a 12 v supply, a relay doesnt stay open 1-2 seconds...... it is about the times ,,,,,
I am looking for a link with a "how to", some schematics , something.....
come undone
- mark.f
- Sergeant Major 4
- Posts: 3638
- Joined: Sat May 06, 2006 11:18 am
- Location: The Big Steezy
- Has thanked: 58 times
- Been thanked: 61 times
- Contact:
https://www.arduino.cc/en/Tutorial/HomePage
You should be able to pick some of what you need out of there.
You should be able to pick some of what you need out of there.
- mrfoo
- Specialist 2
- Posts: 275
- Joined: Wed Apr 29, 2015 11:05 am
- Has thanked: 84 times
- Been thanked: 90 times
A relay will stay "open" as long as you're energising the coil.bravootome wrote:a relay doesnt stay open 1-2 seconds
You'll be lucky to find a "how to" for this.
There'a few ways to go about it.
The "easiest" way is to use a microcontroller to generate the signals you want. Everything is programatically controllable, but you need to be able to program.
The other way is to use something like a 555 to generate your long timebase, and use that to trigger astables for the "fill/wait/spark" cycle. No programming required, but harder to tweak.
In any case, your outputs will be at 3v3 or 5v and minimal amperage, you need to boost them and isolate the higher voltages from your controller electronics. Either using relays or darlington pairs and opto-isolators.
FWIW, I wouldn't rely on timing to get your mix correct, you want an injector that mixes at the same time.