logo

Crowdly

Browser

Add to Chrome

Мікропроцесорні системи (САП)

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!

Яка розрядність МК AVR ATmega328?

100%
0%
0%
0%
View this question

Що станеться, якщо запуcтити наступний скетч?

void setup() {

pinMode(13, OUTPUT);

}

void loop() {

digitalWrite(13, HIGH);

delay(200);

digitalWrite(13, LOW);

}

0%
0%
0%
100%
View this question

Які з наступних регістрів МК AVR використовуються для програмування SPI?

100%
0%
0%
0%
View this question

Скільки разів код видасть цифровий сигнал HIGH на виводі pin1?

int pin1=11;

int x=3;

void setup() {

    pinMode(pin1,OUTPUT);

}

void loop() {

    for(int i=x;i<6;i++) {

        if(i%2==0) {

            x=x+1;

            loop();

        }

        else {

            digitalWrite(pin1,HIGH);

            digitalWrite(pin1,LOW);

        }

    }

}

100%
0%
0%
0%
View this question

Яка мета програми, наведеної нижче?

int ledState = LOW;

int ledPin = 13;

unsigned long previousMillis = 0;

const long interval = 1000;          

void setup() {

    pinMode(ledPin, OUTPUT);

}

void loop() {

    unsigned long currentMillis = millis();

    if (currentMillis - previousMillis >= interval) {

        previousMillis = currentMillis;

        if (ledState == LOW) {

            ledState = HIGH;

        } else {

            ledState = LOW;

        }

        digitalWrite(ledPin, ledState);

    }

}

100%
0%
0%
0%
View this question

Наростаючий фронт сигналу на лінії SDA при високому рівні SCL означає _________

0%
100%
0%
0%
View this question

Що з перерахованого є правильним для SPI?

100%
0%
0%
0%
View this question

Що виведе наступний код Arduino?

#define X 10;

void setup(){

  X=0;

  Serial.begin(9600);

  Serial.print(X);

}

void loop(){

  //Do nothing…

}

0%
100%
0%
0%
View this question

Які оператори використовуються для побітових операцій в embedded C?

0%
0%
0%
100%
View this question

Яка основна мета використання таймера в embedded C?

0%
0%
100%
0%
View this question

Want instant access to all verified answers on vns.lpnu.ua?

Get Unlimited Answers To Exam Questions - Install Crowdly Extension Now!

Browser

Add to Chrome