Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR CPP

how to print items in arduino

void setup() {
  Serial.begin(9600); // begin Serial communication
}

void loop() {
  Serial.print("your text"); // print text
  Serial.print(your_variable); // print a variable
  Serial.print("
"); // print a new line
}
 
PREVIOUS NEXT
Tagged: #print #items #arduino
ADD COMMENT
Topic
Name
5+8 =