Looking for Мікропроцесорні системи (САП) test answers and solutions? Browse our comprehensive collection of verified answers for Мікропроцесорні системи (САП) at vns.lpnu.ua.
Get instant access to accurate answers and detailed explanations for your course questions. Our community-driven platform helps students succeed!
Який результат виконання наведеного нижче коду?
void setup() {Serial.begin(9600);}void loop() {String s=String(13,BIN);Serial.println(s);}
Що виведе наступний код Arduino?
void main() {
int a = 0;
double d = 10.21;
printf("%lu", sizeof(a + d));
}
void loop() {}
Для чого використовується процедура обробки переривань (Interrupt Service Routine) в МК AVR, Arduino?
Що з наведеного нижче є правильним?
Чому кожна компіляція вихідного коду в Arduino перевіряє наявність попередніх компіляцій?
RTC використовується для __________
Що з наведеного є вірне для команди Serial.begin(9600), яка використовується в Arduino C?
Яка функція виводу IOREF на платі Arduino UNO?
Коли процедура (підпрограма) обробки переривання (ISR) виконує призначений їй код?
Який часовий період вихідного сигналу програми наведеної нижче?
int pin=10;void setup() { Serial.begin(9600); pinMode(pin,OUTPUT);}void loop() { digitalWrite(pin,HIGH); delay(10); digitalWrite(pin,LOW); delay(10);}