Skip to content

Commit

Permalink
added examples
Browse files Browse the repository at this point in the history
  • Loading branch information
bengchet committed Apr 1, 2018
1 parent 7732dd8 commit 892fd19
Show file tree
Hide file tree
Showing 21 changed files with 2,008 additions and 0 deletions.
83 changes: 83 additions & 0 deletions MakerUno_DefaultSketch/MakerUno_DefaultSketch.ino
Original file line number Diff line number Diff line change
@@ -0,0 +1,83 @@
#define NOTE_C5 523
#define NOTE_E5 659
#define NOTE_G5 784

#define BUTTON 2
#define BUZZER 8

int melody[] = {
NOTE_E5, NOTE_E5, 0, NOTE_E5, 0, NOTE_C5, NOTE_E5, 0, NOTE_G5
};

int noteDurations[] = {
10, 10, 10, 10, 10, 10, 10, 10, 10
};

int pin;
int ledArrayHigh;
int ledArrayLow;
boolean mode = false;
boolean buttonPressed = false;

void setup()
{
delay(1000);

pinMode(BUTTON, INPUT_PULLUP);
for (pin = 3; pin < 14; pin++) {
pinMode(pin, OUTPUT);
}

for (int thisNote = 0; thisNote < 9; thisNote++) {
int noteDuration = 1000 / noteDurations[thisNote];
tone(BUZZER, melody[thisNote], noteDuration);
int pauseBetweenNotes = noteDuration * 1.30;
delay(pauseBetweenNotes);
noTone(BUZZER);
}
}

void loop()
{
for (pin = 0; pin < 5; pin++) {
if (digitalRead(BUTTON) == LOW &&
buttonPressed == false) {
buttonPressed = true;
mode = !mode;
pin = 0;
if (mode == false) {
tone(BUZZER, NOTE_C5, 100);
delay(100);
tone(BUZZER, NOTE_G5, 100);
delay(100);
noTone(BUZZER);
}
else if (mode == true) {
tone(BUZZER, NOTE_G5, 100);
delay(100);
tone(BUZZER, NOTE_C5, 100);
delay(100);
noTone(BUZZER);
}
}

if (mode == false) {
ledArrayHigh = 13 - pin;
ledArrayLow = 7 - pin;
}
else if (mode == true) {
ledArrayHigh = 9 + pin;
ledArrayLow = 3 + pin;
}
digitalWrite(ledArrayHigh, HIGH);
digitalWrite(ledArrayLow, HIGH);
delay(100);
digitalWrite(ledArrayHigh, LOW);
digitalWrite(ledArrayLow, LOW);
if (pin == 4) delay(100);
}

if (buttonPressed == true) {
buttonPressed = false;
}
}
2 changes: 2 additions & 0 deletions MakerUno_Examples.h
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
//This file allows the MakerUno_Examples to appear in the File > Examples menu and fixes the Invalid library warning in Arduino IDE 1.6.6+
//Don't remove this!!
Binary file added MakerUno_Melody/MakerUno_Negaraku/.DS_Store
Binary file not shown.
Binary file not shown.
154 changes: 154 additions & 0 deletions MakerUno_Melody/MakerUno_Negaraku/NegarakuBass/NegarakuBass.ino
Original file line number Diff line number Diff line change
@@ -0,0 +1,154 @@
/*
* This code will play a melody - Negaraku https://www.youtube.com/watch?v=AMDlAXdyKZM
* using Maker Uno.
*
* Maker Uno: https://www.cytron.io/p-maker-uno
*
* Created by:
* 19 Mar 2018 Idris Cytron Technologies
*/

#include "pitches.h"

#define BUZZER 8

#define TEMPO 2000

int pin = 0;

// notes in the melody:
int melody[] = {
0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0,

0, 0,

NOTE_GS2, 0, NOTE_GS2, NOTE_GS2, 0,
NOTE_GS2, 0, NOTE_GS2, NOTE_GS2, 0,
NOTE_G2, 0, NOTE_G2, NOTE_G2, 0,
NOTE_G2, 0, NOTE_G2, NOTE_G2, 0,
NOTE_AS2, 0, NOTE_AS2, NOTE_AS2, 0,
NOTE_CS3, 0, NOTE_CS3, NOTE_CS3, 0,
NOTE_C3, 0, NOTE_C3, NOTE_C3, 0,
NOTE_C3, 0, NOTE_C3, NOTE_C3, 0,

NOTE_DS3, 0, NOTE_DS3, NOTE_DS3, 0,
NOTE_CS3, 0, NOTE_CS3, NOTE_CS3, 0,
NOTE_F3, 0, NOTE_F3, NOTE_E3, 0, NOTE_E3,
NOTE_F3, 0, NOTE_F3, NOTE_F3, 0,

NOTE_GS2, 0, NOTE_GS2, NOTE_GS2, 0,
NOTE_DS3, 0, NOTE_D3, NOTE_CS3, 0, NOTE_AS2,
NOTE_GS2, 0, NOTE_GS2, NOTE_GS2, 0,
NOTE_GS2, 0, NOTE_GS2, NOTE_GS2, 0,

NOTE_DS4, 0, NOTE_DS4, NOTE_DS4, NOTE_DS4, 0, NOTE_DS4, 0, NOTE_DS4, 0,
NOTE_CS4, 0, NOTE_CS4, NOTE_CS4, NOTE_CS4, 0, NOTE_CS4, 0, NOTE_CS4, 0,
NOTE_F4, 0, NOTE_F4, NOTE_F4, NOTE_F4, 0, NOTE_F4, 0, NOTE_E4, 0,
NOTE_F4, 0, NOTE_F4, NOTE_F4, NOTE_F4, 0, NOTE_F4, 0, NOTE_F4, 0,

NOTE_GS3, 0, NOTE_GS3, NOTE_GS3, NOTE_GS3, 0, NOTE_GS3, 0, NOTE_GS3, 0,
NOTE_DS4, 0, NOTE_DS4, NOTE_DS4, NOTE_D4, 0, NOTE_D4, 0, NOTE_CS4, 0,
NOTE_GS3, 0, NOTE_GS3, NOTE_GS3, NOTE_GS3, 0, NOTE_GS3, 0, NOTE_GS3,
};

// note durations: 4 = quarter note, 8 = eighth note, etc.:
int noteDurations[] = {
2, 16, 16, 8, 8, 8, 8,
3, 24, 16, 16, 8, 8, 8, 8, 4, // 16

2, 4, // 2

8, 4, 8, 4, 4,
8, 4, 8, 4, 4,
8, 4, 8, 4, 4,
8, 4, 8, 4, 4,
8, 4, 8, 4, 4,
8, 4, 8, 4, 4,
8, 4, 8, 4, 4,
8, 4, 8, 4, 4, // 40

8, 4, 8, 4, 4,
8, 4, 8, 4, 4,
8, 4, 8, 8, 4, 8,
8, 4, 8, 4, 4, // 21

8, 4, 8, 4, 4,
8, 4, 8, 8, 4, 8,
8, 4, 8, 4, 4,
8, 4, 8, 4, 4, // 21

16, 16, 16, 16, 16, 16, 16, 16, 4, 4,
16, 16, 16, 16, 16, 16, 16, 16, 4, 4,
16, 16, 16, 16, 16, 16, 16, 16, 4, 4,
16, 16, 16, 16, 16, 16, 16, 16, 4, 4,

16, 16, 16, 16, 16, 16, 16, 16, 4, 4,
16, 16, 16, 16, 16, 16, 16, 16, 4, 4,
16, 16, 16, 16, 16, 16, 16, 16, 2 // 69
};

void setup()
{

for (pin = 2; pin < 14; pin++) {
pinMode(pin, OUTPUT);
}

delay(500);

for (pin = 2; pin < 8; pin++) {
digitalWrite(pin, HIGH);
delay(200);
}

delay(500);

// iterate over the notes of the melody:
for (int thisNote = 0; thisNote < 169; 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 = TEMPO / noteDurations[thisNote];
tone(BUZZER, melody[thisNote], noteDuration);

if (melody[thisNote] == 0) {
LEDs(LOW);
}
else {
LEDs(HIGH);
}

// 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(BUZZER);
}
}

void loop()
{

}

void LEDs(boolean ledArray)
{
if (ledArray == HIGH) {
for (pin = 2; pin < 8; pin++) {
digitalWrite(pin, LOW);
}
for (pin = 9; pin < 14; pin++) {
digitalWrite(pin, HIGH);
}
}
else {
for (pin = 2; pin < 8; pin++) {
digitalWrite(pin, HIGH);
}
for (pin = 9; pin < 14; pin++) {
digitalWrite(pin, LOW);
}
}
}
95 changes: 95 additions & 0 deletions MakerUno_Melody/MakerUno_Negaraku/NegarakuBass/pitches.h
Original file line number Diff line number Diff line change
@@ -0,0 +1,95 @@
/*************************************************
* Public Constants
*************************************************/

#define NOTE_B0 31
#define NOTE_C1 33
#define NOTE_CS1 35
#define NOTE_D1 37
#define NOTE_DS1 39
#define NOTE_E1 41
#define NOTE_F1 44
#define NOTE_FS1 46
#define NOTE_G1 49
#define NOTE_GS1 52
#define NOTE_A1 55
#define NOTE_AS1 58
#define NOTE_B1 62
#define NOTE_C2 65
#define NOTE_CS2 69
#define NOTE_D2 73
#define NOTE_DS2 78
#define NOTE_E2 82
#define NOTE_F2 87
#define NOTE_FS2 93
#define NOTE_G2 98
#define NOTE_GS2 104
#define NOTE_A2 110
#define NOTE_AS2 117
#define NOTE_B2 123
#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
#define NOTE_C5 523
#define NOTE_CS5 554
#define NOTE_D5 587
#define NOTE_DS5 622
#define NOTE_E5 659
#define NOTE_F5 698
#define NOTE_FS5 740
#define NOTE_G5 784
#define NOTE_GS5 831
#define NOTE_A5 880
#define NOTE_AS5 932
#define NOTE_B5 988
#define NOTE_C6 1047
#define NOTE_CS6 1109
#define NOTE_D6 1175
#define NOTE_DS6 1245
#define NOTE_E6 1319
#define NOTE_F6 1397
#define NOTE_FS6 1480
#define NOTE_G6 1568
#define NOTE_GS6 1661
#define NOTE_A6 1760
#define NOTE_AS6 1865
#define NOTE_B6 1976
#define NOTE_C7 2093
#define NOTE_CS7 2217
#define NOTE_D7 2349
#define NOTE_DS7 2489
#define NOTE_E7 2637
#define NOTE_F7 2794
#define NOTE_FS7 2960
#define NOTE_G7 3136
#define NOTE_GS7 3322
#define NOTE_A7 3520
#define NOTE_AS7 3729
#define NOTE_B7 3951
#define NOTE_C8 4186
#define NOTE_CS8 4435
#define NOTE_D8 4699
#define NOTE_DS8 4978


Loading

0 comments on commit 892fd19

Please sign in to comment.