COI - Light the LED

by FCFI Makerspace in Circuits > Assistive Tech

571 Views, 6 Favorites, 0 Comments

COI - Light the LED

morse code.jpg
SAM_5408.JPG
SAM_5410.JPG
SAM_5412.JPG

Hardware:

  • Seeed Touch Sensor
  • Seeed LED
  • Intel Edison
  • Computer
  • 2 Mini usb cords
  • 2 jumpers
  • static mat

Setup:

  1. Plug in Grove base shield into your Edison(doesn't have to be an Intel Edison, it can be an Arduino board )
  2. Plug jumper cable into port D3 (Make sure that ground is in the ground part)
  3. Plug the same jumper cable into the Grove-button (again make sure its plugged into write)
  4. Plug a new jumper into D6
  5. Plug the new jumper into Grove-LED
  6. Download code at end of page
  7. Upload code into Arduino IDE
  8. Upload code to Edison and push the button

Software:

Open the Arduino Edison IDE and use the following code:

const<br>int pinButton = 3;
const
int pinLed = 7;
void
setup()
{
       
pinMode(pinButton, INPUT);
       
pinMode(pinLed, OUTPUT);
}
void
loop()
{
       
if(digitalRead(pinButton))
         {
                  
 digitalWrite(pinLed,HIGH);
}
                   
        else
       {
                  
  digitalWrite(pinLed,LOW);
        }
       delay(10);
} 

Result:
The finished product is a Morse code machine (of sorts). The LED lights as the button is pushed, sending information about the location of the enemy, SOS, answers to questions ... . Learn Morse code and tap out fun messages to your friends and family. We will be working to develop this circuit into a more refined Morse Code generator.

Experience:

You should be careful when trying to do this. Always be sure to use the static mat or the machine can malfunction. It may also shock you so be careful.

Be sure the ports are secured or the code may not activate the responding port.

Downloads