CEED Training Assignment
1. What online platform (circuit section) will be used for the Arduino training?
[Link]
______________________________________________________________________________
______________________________________________________________________________
______________________________________________________________________________
2. What is the programing language in which the Arduino Integrated Development Environment
(IDE) is written?
Java
______________________________________________________________________________
______________________________________________________________________________
______________________________________________________________________________
3. What is the name given to programs written to the IDE?
Sketches
______________________________________________________________________________
______________________________________________________________________________
______________________________________________________________________________
4. How many functions does an Arduino program consist of?
At least two functions, a "setup" function and a "loop" function
______________________________________________________________________________
______________________________________________________________________________
______________________________________________________________________________
5. What is the role of a Microcontroller?
Specify the order of operations
______________________________________________________________________________
______________________________________________________________________________
______________________________________________________________________________
6. Which microcontroller are we using in this lab?
Arduino uno
______________________________________________________________________________
______________________________________________________________________________
______________________________________________________________________________
7. How can the ultrasonic sensor measure distance?
It emits an ultrasonic sound pulse, then receives the echo. Based on the speed of sound, the time interval
______________________________________________________________________________
between the sending and receiving will be used to determin the distance
______________________________________________________________________________
______________________________________________________________________________
8. How will motors be controlled to rotate in both directions?
Se the input of drive chip channel 1 and channel 2 high and low respectively, the motor will rotate
______________________________________________________________________________
in one direction, then swap the input of channel 1 and channel 2, the motor will rotate in the opposite
______________________________________________________________________________
direction
______________________________________________________________________________
9. What programming language does Arduino use or support?
C and C++
______________________________________________________________________________
______________________________________________________________________________
______________________________________________________________________________
10. How can you vary the speed of the motors?
DC motor speed can be controlled by drive voltage, add addtional power supply for the power vcc
______________________________________________________________________________
Or turn the motor on and off to make it work in partial time in a cycle.
______________________________________________________________________________
______________________________________________________________________________