What is the out come of the following Arduino code?
void setup(){
Serial.begin(9600);
}
void setup0{
Serial.write(20);
}
Qus
निम्नलिखित Arduino कोड का परिणाम क्या है?
void setup(){
Serial.begin(9600);
}
void setup0{
Serial.write(20);
}
A. Send a signal to pin 20 on the Arduino board
B. Send a octal number of 20 through the Serial pins
C. Send a byte with value 20 through the Serial pins
D. Send a hexadecimal number of 20 through the Serial pins