how to print items in arduino

Solutions on MaxInterview for how to print items in arduino by the best coders in the world

showing results for - "how to print items in arduino"
Lilly
12 Aug 2017
1void setup() {
2  Serial.begin(9600); // begin Serial communication
3}
4
5void loop() {
6  Serial.print("your text"); // print text
7  Serial.print(your_variable); // print a variable
8  Serial.print("\n"); // print a new line
9}