Hi there everybody.!!
I am here to purpose a new way of replicating Stanley Meyer's work.
Something that could cost less and may make our lives easier.
We all live in a more digital world than yesterday and all here have seen replications of the step charging electrostatic effect in water.
So I thought of a new way to develop a module that will oscillate, scan a range of frequency, find the highest amplitude, and lock into that value.
This is the updated version 0.2.10
Watch in HD
https://www.youtube.com/watch?v=u48kOGoTQjg
https://www.youtube.com/watch?v=t_RMh9v-8mk
Code: [Select]
It is nothing much complicated...
Intergrated for LCD support, tested on Leonardo R3.
It will start oscillating in the range of 500Hz to 18000Hz and back,
store the best value of amplitude given at exact frequency,
and then lock the oscillator at the best found frequency.
The oscillating frequency may not be so clear on the scope or may need some kind of filters.
This code needs some alpha testers who have an assembled vic coil and a scope and may try the code to see its progress.
Any suggestions or help about improving the code is appreciated.!
Parts.:
- trimmers are 10kΩ
- R at button is 1kΩ
- other resistors are 220Ω or less
- Diode is Zener at 5v to protect the arduino's analog input
- Transistor is any NPN audiophile transistor that can handle your WFC. (ex.2N3055)
WARNING..!!!
Please measure the voltage output of your pulse pickup coil, and configure the voltage divider before connecting to the microprocessor.
Updade ver.0.2.10alpha
- Improved code stability and timing
- Added Duty cycle option on the gating frequency
- More info: http://www.open-source-energy.org/?tid=1097&pid=14742#pid14742
- https://www.youtube.com/watch?v=u48kOGoTQjg
UPDATE ver. 0.2.9 alpha Recommended
- Added Gating function at 50% duty cycle for now (software, but it is functioning good)
- Added potentiometer to control the gating frequency
- Added LEDs - Scanning, Locking and gating indicators
- Added Checkpoint before locking
- Added function, After frequency lock, if the voltage drops off 10% of the max voltage value found, system will scan again for the best frequency
- Voltage is now printed in LCD with values from 0.0 to 5.0 volts
- Improved UI
- Improved code quality
- Added full comments inside the code, so there is no schematic needed if you know arduino basics. I will try to find sime time to make a full schematic.
DDS version is removed because of unnecessity. The goal is the KISS methodQuote Have a nice day,
Zissis.!
I am here to purpose a new way of replicating Stanley Meyer's work.
Something that could cost less and may make our lives easier.
We all live in a more digital world than yesterday and all here have seen replications of the step charging electrostatic effect in water.
So I thought of a new way to develop a module that will oscillate, scan a range of frequency, find the highest amplitude, and lock into that value.
This is the updated version 0.2.10
Watch in HD
https://www.youtube.com/watch?v=u48kOGoTQjg
https://www.youtube.com/watch?v=t_RMh9v-8mk
// FREQUENCY GENERATOR / RESONATOR
// v 0.1.0alpha
//Designed on purpose of replicating the Stanley Meyer WFC with VIC technology. Reference video: http://youtu.be/F-FgsE7s4YY?t=28m13s
//This program was designed in arduino Leonardo with a cheap LCD(16x2) screen, and will start to oscillate on pin 9
//as soon as you plug in power. Frequency generation will start at 1000hz and climb up to 15000hz and then decrease
//from 15000hz to 1000hz. In this period of frequency scanning, the best voltage found on pin A0 will be stored in a variable
//so does the the frequency value that the voltage was found in. After scanning has finished oscillator will come back
//on the best frequency found, and hold there until you press the button on pin 8. Then start over.
//This code was developed by Zissis Chiotis and is given in open source.
//You may change or distribute this code for a better world.
It is nothing much complicated...
Intergrated for LCD support, tested on Leonardo R3.
It will start oscillating in the range of 500Hz to 18000Hz and back,
store the best value of amplitude given at exact frequency,
and then lock the oscillator at the best found frequency.
The oscillating frequency may not be so clear on the scope or may need some kind of filters.
This code needs some alpha testers who have an assembled vic coil and a scope and may try the code to see its progress.
Any suggestions or help about improving the code is appreciated.!
Parts.:
- trimmers are 10kΩ
- R at button is 1kΩ
- other resistors are 220Ω or less
- Diode is Zener at 5v to protect the arduino's analog input
- Transistor is any NPN audiophile transistor that can handle your WFC. (ex.2N3055)
WARNING..!!!
Please measure the voltage output of your pulse pickup coil, and configure the voltage divider before connecting to the microprocessor.
Updade ver.0.2.10alpha
- Improved code stability and timing
- Added Duty cycle option on the gating frequency
- More info: http://www.open-source-energy.org/?tid=1097&pid=14742#pid14742
- https://www.youtube.com/watch?v=u48kOGoTQjg
UPDATE ver. 0.2.9 alpha Recommended
- Added Gating function at 50% duty cycle for now (software, but it is functioning good)
- Added potentiometer to control the gating frequency
- Added LEDs - Scanning, Locking and gating indicators
- Added Checkpoint before locking
- Added function, After frequency lock, if the voltage drops off 10% of the max voltage value found, system will scan again for the best frequency
- Voltage is now printed in LCD with values from 0.0 to 5.0 volts
- Improved UI
- Improved code quality
- Added full comments inside the code, so there is no schematic needed if you know arduino basics. I will try to find sime time to make a full schematic.
DDS version is removed because of unnecessity. The goal is the KISS method
UPDATE ver. 0.3.7 alpha
- Added a Digital synthesizer (cheap ebay DDS module) Very clear sin wave.
- Added another check point before locking
- Added "Scan" led and "Locked" led
- Improved UI
- Added function to start scan again if resonant voltage after lock, drops 10% of the Vmax found when scanned.
- Still working on Gating function.
Zissis.!