#include "Arduino.h"
void setup() {
Serial.begin(115200);
}
void loop() {
int x;
for(x=1; x<11; x++)
{
Serial.println(x);
}
while(true); //ให้โปรแกรมหยุดตรงนี้
}
#include "Arduino.h"
void setup() {
Serial.begin(115200);
}
void loop() {
int x;
for(x=1; x<11; x++)
{
Serial.println(x);
}
while(true); //ให้โปรแกรมหยุดตรงนี้
}