IVDZ - Arduino Programming 1

12345678910111213141516171819
Across
  1. 2. value of 5v is sent to output
  2. 3. the programming language the Arduino IDE is based in
  3. 4. loop includes an (initialization;condition;increment)to repeat a clause as long as condition is met
  4. 5. a place to store a piece of data. It has a name, a value, and a type
  5. 6. a technique used to simulate voltages between 0-5v
  6. 9. an expression that must be true or false
  7. 11. a type of variable that can hold text
  8. 14. writes an continuous measurement (PWM wave) to a pin
  9. 16. a command that prints contents of () then a line space
  10. 18. code within () executed repeatedly
  11. 19. a required setup when pins are used for INPUT or OUTPUT
Down
  1. 1. write a HIGH or a LOW value to a digital pin.
  2. 3. resistors limit this in a circuit
  3. 7. a type of variable that can hold numerical values between whole numbers
  4. 8. code within () executed once
  5. 10. a type of variable that can hold whole number numerical values
  6. 12. will loop continuously, and infinitely, until the expression inside the parenthesis, () becomes false.
  7. 13. value of 0v is sent to output
  8. 15. reads the value from the specified analog pin.
  9. 17. checks for a condition and executes the following statement or set of statements if the condition is 'true'.