电子发烧友App

硬声App

0
  • 聊天消息
  • 系统消息
  • 评论与回复
登录后你可以
  • 下载海量资料
  • 学习在线课程
  • 观看技术视频
  • 写文章/发帖/加入社区
创作中心

完善资料让更多小伙伴认识你,还能领取20积分哦,立即完善>

3天内不再提示
电子发烧友网>电子资料下载>电子资料>Arduino UNO婴儿高脚椅音乐剧

Arduino UNO婴儿高脚椅音乐剧

2022-12-02 | zip | 0.26 MB | 次下载 | 免费

资料介绍

描述

如果没有您一直在看,要让婴儿保持忙碌和安全绝非易事。

这个项目的目的是为所有年龄段的孩子创造一个有趣的高脚椅!

教程的主要项目是设置一个游戏,当宝宝按下按钮时,同色灯亮并播放声音

游戏可以很容易地变成更复杂的游戏,当你的宝宝长大后,他们仍然会玩得开心

和工作他们的记忆!

第 1 步:收集您的零件和工具

这个项目我们不需要太多东西,最昂贵的部分将是高脚椅。

我们会需要:

第 2 步:连接

在这一部分中,我们将看到将所有东西放在高脚椅上之前的项目模拟

对于LED,负极连接到电阻器,正极连接到引脚。

一旦它工作,只需要用真正的按钮和灯焊接所有东西

第 3 步:代码

我修改了该站点的代码,以便在按下按钮时两个仅播放 2 个音符并打开灯。

将代码加载到arduino

#define NOTE_C3 131
#define NOTE_CS3 139 #define NOTE_D3 147 #define NOTE_DS3 156 #define NOTE_E3 165 #define NOTE_F3 175 #define NOTE_FS3 185 #define NOTE_G3 196 #define NOTE_GS3 208 #define NOTE_A3 220 #define NOTE_AS3 233 #define NOTE_B3 247 #define NOTE_C4 262 #define NOTE_CS4 277 #define NOTE_D4 294 #define NOTE_DS4 311 #define NOTE_E4 330 #define NOTE_F4 349 #define NOTE_FS4 370 #define NOTE_G4 392 #define NOTE_GS4 415 #define NOTE_A4 440 #define NOTE_AS4 466 #define NOTE_B4 494

// notes in the melody: from guitar study by Sor int melody[] = { NOTE_G3, NOTE_G3, };

int melody2[] = { NOTE_E3, NOTE_C4,};

int melody3[] = { NOTE_B3, NOTE_B3, };

int melody4[] = { NOTE_A3, NOTE_D4, };

//Les PIN arduino n*13,12,11,10 sont pour les leds

int ledPin = 13; int ledPin2 = 12; int ledPin3 = 11; int ledPin4 = 10; int inPin = 2; int inPin2 = 3; int inPin3 = 4; int inPin4 = 5; int val = 0; int vall = 0;

int valll = 0; int vallll = 0;

// note durations: 4 = quarter note, 8 = eighth note, etc.: int noteDurations[] = { 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 2 };

void setup() { pinMode(2, INPUT_PULLUP); // push-button switch on pin 2, use internal pull-up resistor pinMode(3, INPUT_PULLUP); pinMode(4, INPUT_PULLUP); pinMode(5, INPUT_PULLUP);

pinMode(ledPin, OUTPUT); // declare LED as output

PlayTune(); // play tune at start-up }

void loop() {

// play tune again if button on digital pin 2 is pressed //pinMode(ledPin, OUTPUT); if (!digitalRead(5)) { vallll = digitalRead(inPin4); // read input value if (val == HIGH) { // check if the input is HIGH (button released) digitalWrite(ledPin4, LOW); // turn LED OFF } else { digitalWrite(ledPin4, HIGH); // turn LED ON delay(200); digitalWrite(ledPin4, LOW); } void PlayTune();

{ // iterate over the notes of the melody: for (int thisNote = 0; thisNote < 2; thisNote++) { //le chffre 2 réprésente le temps que dure la //mélodie

// to calculate the note duration, take one second // divided by the note type. //e.g. quarter note = 1000 / 4, eighth note = 1000/8, etc. int noteDuration = 1500 / noteDurations[thisNote]; tone(8, melody4[thisNote], noteDuration);

// to distinguish the notes, set a minimum time between them. // the note's duration + 30% seems to work well: int pauseBetweenNotes = noteDuration * 1.30; delay(pauseBetweenNotes); // stop the tone playing: noTone(8);

} } }

if (!digitalRead(4)) {

val = digitalRead(inPin3); // read input value if (valll == HIGH) { // check if the input is HIGH (button released) digitalWrite(ledPin3, LOW); // turn LED OFF } else { digitalWrite(ledPin3, HIGH); // turn LED ON delay(200); digitalWrite(ledPin3, LOW); } void PlayTune();

{ // iterate over the notes of the melody: for (int thisNote = 0; thisNote < 2; thisNote++) {

// to calculate the note duration, take one second // divided by the note type. //e.g. quarter note = 1000 / 4, eighth note = 1000/8, etc. int noteDuration = 1500 / noteDurations[thisNote]; tone(8, melody3[thisNote], noteDuration);

// to distinguish the notes, set a minimum time between them. // the note's duration + 30% seems to work well: int pauseBetweenNotes = noteDuration * 1.30; delay(pauseBetweenNotes); // stop the tone playing: noTone(8); } } }

if (!digitalRead(3)) {

vall = digitalRead(inPin2); // read input value if (val == HIGH) { // check if the input is HIGH (button released) digitalWrite(ledPin2, LOW); // turn LED OFF } else { digitalWrite(ledPin2, HIGH); // turn LED ON delay(200); digitalWrite(ledPin2, LOW); } void PlayTune();

{ // iterate over the notes of the melody: for (int thisNote = 0; thisNote < 2; thisNote++) {

// to calculate the note duration, take one second // divided by the note type. //e.g. quarter note = 1000 / 4, eighth note = 1000/8, etc. int noteDuration = 1500 / noteDurations[thisNote]; tone(8, melody2[thisNote], noteDuration);

// to distinguish the notes, set a minimum time between them. // the note's duration + 30% seems to work well: int pauseBetweenNotes = noteDuration * 1.30; delay(pauseBetweenNotes); // stop the tone playing: noTone(8); } } } if (!digitalRead(2)) { val = digitalRead(inPin); // read input value if (val == HIGH) { // check if the input is HIGH (button released) digitalWrite(ledPin, LOW); // turn LED OFF } else { digitalWrite(ledPin, HIGH); // turn LED ON delay(200); digitalWrite(ledPin, LOW); } PlayTune(); } }

// a function that plays the tune void PlayTune() { // iterate over the notes of the melody: for (int thisNote = 0; thisNote < 2; thisNote++) {

// to calculate the note duration, take one second // divided by the note type. //e.g. quarter note = 1000 / 4, eighth note = 1000/8, etc. int noteDuration = 1500 / noteDurations[thisNote]; tone(8, melody[thisNote], noteDuration);

// to distinguish the notes, set a minimum time between them. // the note's duration + 30% seems to work well: int pauseBetweenNotes = noteDuration * 1.30; delay(pauseBetweenNotes); // stop the tone playing: noTone(8); }

}

第 4 步:安装

 
 
 
 
pYYBAGOIpJqAetr8AAAS_uMfwRQ918.png
 
1 / 2
 

一切都完成了,只需要在桌子上为按钮/led 做一些孔(我用的烙铁可能不是最好的),然后把 arduino 粘在下面。

当您放置 arduino 和按钮时,请仔细考虑宝宝的腿不要弄断任何东西,就我而言,我用了一些纸板来保护

按钮

- 对于按钮,底部的电线连接到 arduino 上的引脚,另一根连接到 GND

引领:

  • 对于 LED,我将电阻器焊接到 LED,然后将所有 LED 的电阻器焊接到连接 GND 的一根导线
  • 实际上所有的 GND 都焊接到连接到 arduino 的 GND 的同一根线上

演讲者

一根电缆焊接到连接到 arduino 的电容器

另一个焊料连接到 arduino 的 GND 的电线

第 5 步:结论

最烦人的是灯,当它发光时它们不够亮,我仍在寻找解决方案。

这是我的第一个 instrucables 期待您的反馈或改进椅子!

第 6 步:记忆游戏

当您的孩子长大后,您可以像Simon 所说的那样将游戏升级为更复杂的游戏

您不需要按钮的更改引脚,但是扬声器和 LED 不在正确的引脚上

您可以更改代码或更改引脚 13 上的扬声器

以及引脚 8、9、10、11 上的 LED。

#include 
Tone speakerpin;
int starttune[] = {NOTE_C4, NOTE_F4, NOTE_C4, NOTE_F4, NOTE_C4, NOTE_F4, NOTE_C4, NOTE_F4, NOTE_G4, NOTE_F4, NOTE_E4, NOTE_F4, NOTE_G4}; int duration2[] = {100, 200, 100, 200, 100, 400, 100, 100, 100, 100, 200, 100, 500}; int note[] = {NOTE_C4, NOTE_C4, NOTE_G4, NOTE_C5, NOTE_G4, NOTE_C5}; int duration[] = {100, 100, 100, 300, 100, 300}; boolean button[] = {2, 3, 4, 5}; //The four button input pins boolean ledpin[] = {8, 9, 10, 11}; // LED pins int turn = 0; // turn counter int buttonstate = 0; // button state checker int randomArray[100]; //Intentionally long to store up to 100 inputs (doubtful anyone will get this far) int inputArray[100];

void setup() { Serial.begin(9600); speakerpin.begin(12); // speaker is on pin 13

for(int x=0; x<4; x++) // LED pins are outputs { pinMode(ledpin[x], OUTPUT); } for(int x=0; x<4; x++) { pinMode(button[x], INPUT); // button pins are inputs digitalWrite(button[x], HIGH); // enable internal pullup; buttons start in high position; logic reversed }

randomSeed(analogRead(0)); //Added to generate "more randomness" with the randomArray for the output function for (int thisNote = 0; thisNote < 13; thisNote ++) { // play the next note: speakerpin.play(starttune[thisNote]); // hold the note: if (thisNote==0 || thisNote==2 || thisNote==4 || thisNote== 6) { digitalWrite(ledpin[0], HIGH); } if (thisNote==1 || thisNote==3 || thisNote==5 || thisNote== 7 || thisNote==9 || thisNote==11) { digitalWrite(ledpin[1], HIGH); } if (thisNote==8 || thisNote==12) { digitalWrite(ledpin[2], HIGH); } if (thisNote==10) { digitalWrite(ledpin[3], HIGH); } delay(duration2[thisNote]); // stop for the next note: speakerpin.stop(); digitalWrite(ledpin[0], LOW); digitalWrite(ledpin[1], LOW); digitalWrite(ledpin[2], LOW); digitalWrite(ledpin[3], LOW); delay(25); } delay(1000); }

void loop() { for (int y=0; y<=99; y++) { //function for generating the array to be matched by the player digitalWrite(ledpin[0], HIGH); digitalWrite(ledpin[1], HIGH); digitalWrite(ledpin[2], HIGH); digitalWrite(ledpin[3], HIGH); for (int thisNote = 0; thisNote < 6; thisNote ++) { // play the next note: speakerpin.play(note[thisNote]); // hold the note: delay(duration[thisNote]); // stop for the next note: speakerpin.stop(); delay(25); } digitalWrite(ledpin[0], LOW); digitalWrite(ledpin[1], LOW); digitalWrite(ledpin[2], LOW); digitalWrite(ledpin[3], LOW); delay(1000); for (int y=turn; y <= turn; y++) { //Limited by the turn variable Serial.println(""); //Some serial output to follow along Serial.print("Turn: "); Serial.print(y); Serial.println(""); randomArray[y] = random(1, 5); //Assigning a random number (1-4) to the randomArray[y], y being the turn count for (int x=0; x <= turn; x++) { Serial.print(randomArray[x]); for(int y=0; y<4; y++) { if (randomArray[x] == 1 && ledpin[y] == 8) { //if statements to display the stored values in the array digitalWrite(ledpin[y], HIGH); speakerpin.play(NOTE_G3, 100); delay(400); digitalWrite(ledpin[y], LOW); delay(100); }

if (randomArray[x] == 2 && ledpin[y] == 9) { digitalWrite(ledpin[y], HIGH); speakerpin.play(NOTE_A3, 100); delay(400); digitalWrite(ledpin[y], LOW); delay(100); } if (randomArray[x] == 3 && ledpin[y] == 10) { digitalWrite(ledpin[y], HIGH); speakerpin.play(NOTE_B3, 100); delay(400); digitalWrite(ledpin[y], LOW); delay(100); }

if (randomArray[x] == 4 && ledpin[y] == 11) { digitalWrite(ledpin[y], HIGH); speakerpin.play(NOTE_C4, 100); delay(400); digitalWrite(ledpin[y], LOW); delay(100); } } } } input(); } }

void input() { //Function for allowing user input and checking input against the generated array

for (int x=0; x <= turn;) { //Statement controlled by turn count

for(int y=0; y<4; y++) { buttonstate = digitalRead(button[y]); if (buttonstate == LOW && button[y] == 2) { //Checking for button push digitalWrite(ledpin[0], HIGH); speakerpin.play(NOTE_G3, 100); delay(200); digitalWrite(ledpin[0], LOW); inputArray[x] = 1; delay(250); Serial.print(" "); Serial.print(1); if (inputArray[x] != randomArray[x]) { //Checks value input by user and checks it against fail(); //the value in the same spot on the generated array } //The fail function is called if it does not match x++; } if (buttonstate == LOW && button[y] == 3) { digitalWrite(ledpin[1], HIGH); speakerpin.play(NOTE_A3, 100); delay(200); digitalWrite(ledpin[1], LOW); inputArray[x] = 2; delay(250); Serial.print(" "); Serial.print(2); if (inputArray[x] != randomArray[x]) { fail(); } x++; }

if (buttonstate == LOW && button[y] == 4) { digitalWrite(ledpin[2], HIGH); speakerpin.play(NOTE_B3, 100); delay(200); digitalWrite(ledpin[2], LOW); inputArray[x] = 3; delay(250); Serial.print(" "); Serial.print(3); if (inputArray[x] != randomArray[x]) { fail(); } x++; }

if (buttonstate == LOW && button[y] == 5) { digitalWrite(ledpin[3], HIGH); speakerpin.play(NOTE_C4, 100); delay(200); digitalWrite(ledpin[3], LOW); inputArray[x] = 4; delay(250); Serial.print(" "); Serial.print(4); if (inputArray[x] != randomArray[x]) { fail(); } x++; } } } delay(500); turn++; //Increments the turn count, also the last action before starting the output function over again }

void fail() { //Function used if the player fails to match the sequence

for (int y=0; y<=2; y++) { //Flashes lights for failure digitalWrite(ledpin[0], HIGH); digitalWrite(ledpin[1], HIGH); digitalWrite(ledpin[2], HIGH); digitalWrite(ledpin[3], HIGH); speakerpin.play(NOTE_G3, 300); delay(200); digitalWrite(ledpin[0], LOW); digitalWrite(ledpin[1], LOW); digitalWrite(ledpin[2], LOW); digitalWrite(ledpin[3], LOW); speakerpin.play(NOTE_C3, 300); delay(200); } delay(500); turn = -1; //Resets turn value so the game starts over without need for a reset button }


下载该资料的人也在下载 下载该资料的人还在阅读
更多 >

评论

查看更多

下载排行

本周

  1. 14K 十倍光学变焦摄像头模组OZ080规格书
  2. 0.59 MB   |  5次下载  |  免费
  3. 2LC329 红外热成像专用无线图传模块规格书
  4. 0.37 MB   |  2次下载  |  免费
  5. 3W5500V1.3中文数据手册
  6. 2.17 MB   |  2次下载  |  1 积分
  7. 4直流开关电源基础介绍
  8. 12.86 MB   |  1次下载  |  1 积分
  9. 5南网分布式DTU综合通讯管理单元APT-6000T用户手册
  10. 0.72 MB   |  1次下载  |  免费
  11. 6CoAP协议中文版PDF电子书免费下载
  12. 0.82 MB   |  0次下载  |  免费
  13. 7同步降压电源管理芯片PL2733C数据手册
  14. 0.26 MB   |  次下载  |  免费
  15. 8四路双输入正与非门SNx4AHC02数据表
  16. 2.9MB   |  次下载  |  免费

本月

  1. 1储能电源市场分析
  2. 7.99 MB  |  16次下载  |  免费
  3. 2传感芯片选型指南
  4. 3.60 MB   |  14次下载  |  免费
  5. 3ATmega8芯片中文手册
  6. 2.45 MB   |  8次下载  |  1 积分
  7. 42A多电池高效开关充电器AN_SY6912A中文资料规格书
  8. 1.43 MB   |  8次下载  |  免费
  9. 5储能电源市场分析报告
  10. 2.61 MB   |  8次下载  |  免费
  11. 6山特TG400UPS工作原理与维修
  12. 0.39 MB   |  5次下载  |  1 积分
  13. 72023年光伏行业发展回顾报告
  14. 2.50 MB   |  5次下载  |  免费
  15. 84K 十倍光学变焦摄像头模组OZ080规格书
  16. 0.59 MB   |  5次下载  |  免费

总榜

  1. 1matlab软件下载入口
  2. 未知  |  935094次下载  |  免费
  3. 2开源硬件-PMP21529.1-4 开关降压/升压双向直流/直流转换器 PCB layout 设计
  4. 1.48MB  |  420050次下载  |  免费
  5. 3Altium DXP2002下载入口
  6. 未知  |  233068次下载  |  免费
  7. 4电路仿真软件multisim 10.0免费下载
  8. 340992  |  191333次下载  |  免费
  9. 5十天学会AVR单片机与C语言视频教程 下载
  10. 158M  |  183317次下载  |  免费
  11. 6labview8.5下载
  12. 未知  |  81569次下载  |  免费
  13. 7Keil工具MDK-Arm免费下载
  14. 0.02 MB  |  73795次下载  |  免费
  15. 8NI LabVIEW中实现3D视觉的工具和技术
  16. 未知  |  70088次下载  |  免费