You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
229 B
Arduino
15 lines
229 B
Arduino
5 years ago
|
char z[] = "words are fun!"; //14 character
|
||
|
int x=0;
|
||
|
|
||
|
void setup() {
|
||
|
Serial.begin(9600);
|
||
|
}
|
||
|
void loop() {
|
||
|
|
||
|
while(x<15){
|
||
|
Serial.println(z[x]);
|
||
|
delay(100); // pause loop for 100ms
|
||
|
x++; //x + 1 + 1
|
||
|
}
|
||
|
}
|