Part 1: Welcome TI-Innovator – Playing with LED

  • Instructions - How you can control built-in LED?
  • Connecting LED ON and OFF

    Send "SET LIGHT ON"   
    Wait 3  
    Send "SET LIGHT OFF" 

    Write the code and test that it is working right.

    Start from here

  • Exercise - Blinking LED

    Your work

    Build a blinking LED

     

    You may need

    • FOR -expression
  • Solutions

    TI-Basic Code

    Define blink()=
    Prgm
    For a,1,10
    Send "SET LIGHT ON"
    Wait 1
    Send "SET LIGHT OFF"
    Wait 1
    EndFor
    EndPrgm

    Notice: You can't copy-paste it because it includes HTML formattings