void setup() {
pinMode(motorpin,OUTPUT);
Serial.begin(9600);
while(! Serial);
Serial.println ("Speed 0 to 255");
}
void loop(){
if(Serial.available())
{
int speed = Serial.parseInt();
if(speed >=0 && speed <=255)
{
analogWrite(motorpin,speed);
}
}
}
Internet of Things หรือ IoT Internet of Things (IoT) คือ การที่อุปกรณ์อิเล็กทรอนิกส์ต่างๆ สามารถเชื่อมโยงหรือส่งข้อมูลถึงกันได้ด้วยอิน...
ไม่มีความคิดเห็น:
แสดงความคิดเห็น