09.02.2018 Views

Practical Guige to Free Energy Devices

eBook 3000 pages! author: Patrick J. Kelly "This eBook contains most of what I have learned about this subject after researching it for a number of years. I am not trying to sell you anything, nor am I trying to convince you of anything. When I started looking into this subject, there was very little useful information and any that was around was buried deep in incomprehensible patents and documents. My purpose here is to make it easier for you to locate and understand some of the relevant material now available. What you believe is up to yourself and is none of my business. Let me stress that almost all of the devices discussed in the following pages, are devices which I have not personally built and tested. It would take several lifetimes to do that and it would not be in any way a practical option. Consequently, although I believe everything said is fully accurate and correct, you should treat everything as being “hearsay” or opinion. Some time ago, it was commonly believed that the world was flat and rested on the backs of four elephants and that when earthquakes shook the ground, it was the elephants getting restless. If you want to believe that, you are fully at liberty to do so, however, you can count me out as I don’t believe that. " THE MATERIAL PRESENTED IS FOR INFORMATION PURPOSES ONLY. SHOULD YOU DECIDE TO PERFORM EXPERIMENTS OR CONSTRUCT ANY DEVICE, YOU DO SO WHOLLY ON YOUR OWN RESPONSIBILITY -- NEITHER THE COMPANY HOSTING THIS WEB SITE, NOR THE SITE DESIGNER ARE IN ANY WAY RESPONSIBLE FOR YOUR ACTIONS OR ANY RESULTING LOSS OR DAMAGE OF ANY DESCRIPTION, SHOULD ANY OCCUR AS A RESULT OF WHAT YOU DO. ​

eBook 3000 pages!
author: Patrick J. Kelly

"This eBook contains most of what I have learned about this subject after researching it for a number of years. I am not trying to sell you anything, nor am I trying to convince you of anything. When I started looking into this subject, there was very little useful information and any that was around was buried deep in incomprehensible patents and documents. My purpose here is to make it easier for you to locate and understand some of the relevant material now available. What you believe is up to yourself and is none of my business. Let me stress that almost all of the devices discussed in the following pages, are devices which I have not personally built and tested. It would take several lifetimes to do that and it would not be in any way a practical option. Consequently, although I believe everything said is fully accurate and correct, you should treat everything as being “hearsay” or opinion.

Some time ago, it was commonly believed that the world was flat and rested on the backs of four elephants and that when earthquakes shook the ground, it was the elephants getting restless. If you want to believe that, you are fully at liberty to do so, however, you can count me out as I don’t believe that. "

THE MATERIAL PRESENTED IS FOR INFORMATION PURPOSES ONLY. SHOULD YOU DECIDE TO PERFORM EXPERIMENTS OR CONSTRUCT ANY DEVICE, YOU DO SO WHOLLY ON YOUR OWN RESPONSIBILITY -- NEITHER THE COMPANY HOSTING THIS WEB SITE, NOR THE SITE DESIGNER ARE IN ANY WAY RESPONSIBLE FOR YOUR ACTIONS OR ANY RESULTING LOSS OR DAMAGE OF ANY DESCRIPTION, SHOULD ANY OCCUR AS A RESULT OF WHAT YOU DO.

SHOW MORE
SHOW LESS
  • No tags were found...

You also want an ePaper? Increase the reach of your titles

YUMPU automatically turns print PDFs into web optimized ePapers that Google loves.

A standard 9-pin computer socket has it's pin 2 connected <strong>to</strong> the PIC's pin 2, pin 3 connected <strong>to</strong> the PIC's pin 3<br />

via a 10K / 22K voltage divider resis<strong>to</strong>r pair (which lowers the incoming signal voltage), and pin 5 is connected <strong>to</strong><br />

the PIC's pin 5. That is all that's needed <strong>to</strong> feed information in<strong>to</strong> the PIC chip.<br />

The chip is supplied from a 12-volt battery but as it needs a 5-volt supply, the 100 / 150 ohm (2 watt) resis<strong>to</strong>r pair<br />

is used <strong>to</strong> drop the 12 volts down <strong>to</strong> about 7 volts and then the 5.1-volt zener diode clamps the voltage at 5.1<br />

volts, which is just what the chip needs. The tiny 10 nF (0.01 microfarad) capaci<strong>to</strong>r is there <strong>to</strong> trap any voltage<br />

spikes should any be picked up from some outside influence. Finally, the press-but<strong>to</strong>n switch used <strong>to</strong> short<br />

between pins 4 and 5 is used <strong>to</strong> wipe out the program inside the PIC, ready for a new program <strong>to</strong> be loaded.<br />

The actual programming is not difficult and the feed in<strong>to</strong> the chip is handled by the program supplied with the chip<br />

and which is run on your home computer. Let's take an example. Suppose we want the output on pin 10 <strong>to</strong> act<br />

as a clock signal. The people who made the chip expect that pin <strong>to</strong> be called "Output 4" in the program. Please<br />

don't ask me why it isn't called "10" in the program as I have no answer for you other than "it takes all sorts of<br />

people <strong>to</strong> make a world".<br />

All right, suppose we want <strong>to</strong> produce an output signal like a 555 chip running at 50 Hz. We choose one of our<br />

output pins, say, the physical pin 10, that being the bot<strong>to</strong>m right hand pin on the chip. As you can see from the<br />

pin diagram of the chip shown above, pin 10 is called "Output 4" in a set of commands, or just "4" <strong>to</strong> save typing.<br />

The program might be:<br />

Main:<br />

high 4<br />

pause 10<br />

low 4<br />

pause 10<br />

go<strong>to</strong> Main<br />

Wow - really difficult stuff !! Only a genius could manage <strong>to</strong> program! Well, we'll see if we can struggle along<br />

with this "difficult" stuff.<br />

The "Main:" at the start is a "label" which can be jumped <strong>to</strong> and that is done by the "go<strong>to</strong> Main" command which<br />

sends the chip back <strong>to</strong> repeat the commands in the loop indefinitely (or until the chip is powered down).<br />

The second line "high 4" tells the chip <strong>to</strong> put the maximum possible voltage on the "Output 4" which is the physical<br />

pin 10 of the chip. The chip does this immediately, with no time delay.<br />

If we want the output <strong>to</strong> give a 50 Hz output signal, then the voltage on our chosen output pin will have <strong>to</strong> go high,<br />

pause, go low, pause and go high again, 50 times each second. As there are 1,000 milliseconds in one second,<br />

and the chip's clock runs with 1 millisecond ticks, then we need our complete cycle of "up, pause, down, pause" <strong>to</strong><br />

happen 50 times in those 1,000 clock ticks. That is, once every 20 ticks, so each delay will be 10 clock ticks long.<br />

The third line "pause 10" tells the chip <strong>to</strong> sit on it's hands and do nothing for the next 10 ticks of it's internal clock<br />

(which ticks 1,000 times per second).<br />

The fourth line "low 4" tells the chip <strong>to</strong> lower the output voltage on it's "Output 4" (pin 10 in real life) <strong>to</strong> it's minimum<br />

value.<br />

The fifth line "pause 10" tells the chip <strong>to</strong> wait for 10 milliseconds before doing anything else.<br />

12 - 77

Hooray! Your file is uploaded and ready to be published.

Saved successfully!

Ooh no, something went wrong!