本站改版新增arduino频道

Micropython
Arduino

arduino arduino 蜂鸣器


arduino arduino 蜂鸣器

const int buzzerPin = 18; // 定义蜂鸣器连接的引脚

void setup() {
  pinMode(buzzerPin, OUTPUT); // 设置蜂鸣器引脚为输出模式
}

void loop() {
  // 发出声音
  tone(buzzerPin, 1000); // 在蜂鸣器引脚上产生1kHz的音调
  delay(1000); // 持续1秒

  // 停止声音
  noTone(buzzerPin); // 停止蜂鸣器发声
  delay(1000); // 等待1秒
}



推荐分享
图文皆来源于网络,内容仅做公益性分享,版权归原作者所有,如有侵权请告知删除!
 

Copyright © 2014 ESP56.com All Rights Reserved
晋ICP备14006235号-22 晋公网安备14108102001165号

执行时间: 0.011757850646973 seconds