Skip to content
Snippets Groups Projects
Select Git revision
  • 31daf04c6a4d6ff9813b04abd131cde57ed7cdde
  • master default protected
  • LUFA-170418
  • LUFA-151115
  • LUFA-140928
  • LUFA-140302
  • LUFA-130901
  • LUFA-130901-BETA
  • LUFA-130303
  • LUFA-120730
  • LUFA-120730-BETA
  • LUFA-120219
  • LUFA-120219-BETA
  • LUFA-111009
  • LUFA-111009-BETA
  • LUFA-110528
  • LUFA-110528-BETA
17 results

MissileLauncher.h

Blame
  • index.html 653 B
    <html>
    <head>
    <style>
    pre code {
      background-color: #eee;
      border: 1px solid #999;
      display: block;
      padding: 20px;
    }
    </style>
    
    
    </head>
    <body>
    
    <h1>RaspberryPi Zero W with BCM2835</h1>
    
    <figure>
    <img src='node_rpio.png'>
    <figcaption>Ring oscillator with node-rpio.</figcaption>
    </figure>
    
    <p>This ring oscillator uses the <a href='https://github.com/jperkin/node-rpio'>node rpio</a> from Jonathan Perkin.  The code is available <a href='ring.js'>here</a>, or visible below.</p>
    
    <pre>
    <code>
    var rpio = require('rpio');
    rpio.open(3, rpio.OUTPUT);
    rpio.open(5, rpio.INPUT);
    while(1){rpio.write(3, 1-rpio.read(5) ); }
    </code>
    </pre>
    
    </body>
    
    </html>