Arduino 각종 모듈 편 진동 모듈 진동기
1747 단어 arduino
Now the vibrator we choose is the one which looks like this:
http://www.seeedstudio.com/wiki/Grove_-_Vibrator
I am testing this vibrator which is neat.
const int vibratorPin = 8;
void setup()
{
pinMode(vibratorPin, OUTPUT);
}
void loop()
{
// make it vibrate
digitalWrite(vibratorPin,HIGH);
delay(1000);
// make it not vibrate
digitalWrite(vibratorPin,LOW);
delay(1000);
}
make it run!
then you will see it vibrate every 1 sec.
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
Monterey 12.3의 ESP32 Arduino CoreESP32 Arduino Core 在 連結 連結 程式 的 的 的 階段 會 會 使用 到 到 一 個 個 gen_esp32part.py 的 Python 程式 檔 檔 檔, 但是 MacOS 在 升級 到 12.3 時 了, 所以...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.