题目
题目

LC Electrical Engineering 1 - 28604 Microcontrollers Lab (Lab 2) Quiz

单项选择题

What will be the effect of this program when an LED (and suitable protection resistor) is attached to pin 13: void setup() {   pinMode(13, OUTPUT); } void loop() {   digitalWrite(13, HIGH);   delay(500);   digitalWrite(13, LOW);   delay(200); }        

选项
A.The LED will turn on for 0.5 seconds and then turn off for 0.2 seconds
B.The LED will repeatedly go through the sequence: on for 500 seconds then off for 200 seconds
C.The LED will repeatedly go through the sequence: off for 0.5 seconds then on for 0.2 seconds
D.The LED will repeatedly go through the sequence: on for 0.5 seconds then off for 0.2 seconds
查看解析

查看解析

标准答案
Please login to view
思路分析
To analyze the behavior, we first note that pin 13 is configured as OUTPUT in setup, which enables us to drive the LED directly from the Arduino pin. Option 1: 'The LED will turn on for 0.5 seconds and then turn off for 0.2 seconds.' This captures the timing pattern of the HIGH state (0.5 seconds) followed by the LOW state (0.2 seconds), but it does not explicitly m......Login to view full explanation

登录即可查看完整答案

我们收录了全球超50000道考试原题与详细解析,现在登录,立即获得答案。

更多留学生实用工具

加入我们,立即解锁 海量真题独家解析,让复习快人一步!