วันเสาร์ที่ 4 สิงหาคม พ.ศ. 2561

งานที่ 1

งาน 1



int motorpin =2;
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 Internet of Things (IoT)  คือ การที่อุปกรณ์อิเล็กทรอนิกส์ต่างๆ สามารถเชื่อมโยงหรือส่งข้อมูลถึงกันได้ด้วยอิน...