【转载】零知开源快速入门8-让你的作品发出声音-Arduino中文社区 - Powered by Discuz!

Arduino中文社区

 找回密码
 立即注册

QQ登录

只需一步,快速开始

查看: 1603|回复: 0

【转载】零知开源快速入门8-让你的作品发出声音

[复制链接]
发表于 2018-6-25 17:39 | 显示全部楼层 |阅读模式
转载自:零知开源快速入门8-让你的作品发出声音
http://www.lingzhilab.com/forum.php?mod=viewthread&tid=179&fromuid=2
(出处: 零知实验室)



前面我们的作品一直是只能用眼睛看,但是一个好的电子作品怎么可以没有声音呢?现在我们就做出一个有声音的作品吧!

一、工具原料
  • 电脑,windows系统
  • 零知开发板
  • micro-usb线
  • 蜂鸣器1个
  • 面包板一个+若干跳线


二、硬件连接
1、电路原理图

2、电路连接(这里注意一下正负极即可,我这里正极连接到了开发板的1号脚上了)

三、方法步骤
1、打开零知实验室软件开发工具,然后新建项目,输入以下代码:
  • /**
  • *    文件: buzzer-TEST.ino
  • *    作者: 零知实验室
  • *    时间: 2018/06/25 17:20
  • *    说明:
  • **/
  • int buzzerPin = 0;
  • int count = 0;//计数
  • // the setup routine runs once when you press reset:
  • void setup() {
  •     // put your setup code here, to run once:
  •         pinMode(buzzerPin, OUTPUT);
  • }
  • // the loop routine runs over and over again forever:
  • void loop() {
  •     // put your main code here, to run repeatedly:
  •         count = 0;
  •         //先输出一个频率的声音
  •         while(count++<100)
  •         {
  •                 digitalWrite(buzzerPin, HIGH);
  •                 delay(15);
  •                 digitalWrite(buzzerPin, LOW);
  •                 delay(15);
  •         }
  •         count = 0;
  •         //这里改变了延时时间,输出的频率就改变了,声音效果就不同了
  •         while(count++<100)
  •         {
  •                 digitalWrite(buzzerPin, HIGH);
  •                 delay(20);
  •                 digitalWrite(buzzerPin, LOW);
  •                 delay(20);
  •         }
  • }

[color=rgb(51, 102, 153) !important]复制代码


2、按照之前的方式先【编译】,然后【上传】到开发板中。
四、成果展示
上面步骤成功完成后,我们就听到声音了。
您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

小黑屋|Archiver|手机版|Arduino中文社区

GMT+8, 2024-11-28 06:35 , Processed in 0.205841 second(s), 15 queries .

Powered by Discuz! X3.4

Copyright © 2001-2021, Tencent Cloud.

快速回复 返回顶部 返回列表