import time
import machine
# Note definitions (in Hertz)
NOTE_B0 = 31
NOTE_C1 = 33
NOTE_CS1 = 35
NOTE_D1 = 37
NOTE_DS1 = 39
NOTE_E1 = 41
NOTE_F1 = 44
NOTE_FS1 = 46
NOTE_G1 = 49
NOTE_GS1 = 52
NOTE_A1 = 55
NOTE_AS1 = 58
NOTE_B1 = 62
NOTE_C2 = 65
NOTE_CS2 = 69
NOTE_D2 = 73
NOTE_DS2 = 78
NOTE_E2 = 82
NOTE_F2 = 87
NOTE_FS2 = 93
NOTE_G2 = 98
NOTE_GS2 = 104
NOTE_A2 = 110
NOTE_AS2 = 117
NOTE_B2 = 123
NOTE_C3 = 131
NOTE_CS3 = 139
NOTE_D3 = 147
NOTE_DS3 = 156
NOTE_E3 = 165
NOTE_F3 = 175
NOTE_FS3 = 185
NOTE_G3 = 196
NOTE_GS3 = 208
NOTE_A3 = 220
NOTE_AS3 = 233
NOTE_B3 = 247
NOTE_C4 = 262
NOTE_CS4 = 277
NOTE_D4 = 294
NOTE_DS4 = 311
NOTE_E4 = 330
NOTE_F4 = 349
NOTE_FS4 = 370
NOTE_G4 = 392
NOTE_GS4 = 415
NOTE_A4 = 440
NOTE_AS4 = 466
NOTE_B4 = 494
NOTE_C5 = 523
NOTE_CS5 = 554
NOTE_D5 = 587
NOTE_DS5 = 622
NOTE_E5 = 659
NOTE_F5 = 698
NOTE_FS5 = 740
NOTE_G5 = 784
NOTE_GS5 = 831
NOTE_A5 = 880
NOTE_AS5 = 932
NOTE_B5 = 988
NOTE_C6 = 1047
NOTE_CS6 = 1109
NOTE_D6 = 1175
NOTE_DS6 = 1245
NOTE_E6 = 1319
NOTE_F6 = 1397
NOTE_FS6 = 1480
NOTE_G6 = 1568
NOTE_GS6 = 1661
NOTE_A6 = 1760
NOTE_AS6 = 1865
NOTE_B6 = 1976
NOTE_C7 = 2093
NOTE_CS7 = 2217
NOTE_D7 = 2349
NOTE_DS7 = 2489
NOTE_E7 = 2637
NOTE_F7 = 2794
NOTE_FS7 = 2960
NOTE_G7 = 3136
NOTE_GS7 = 3322
NOTE_A7 = 3520
NOTE_AS7 = 3729
NOTE_B7 = 3951
NOTE_C8 = 4186
NOTE_CS8 = 4435
NOTE_D8 = 4699
NOTE_DS8 = 4978
REST = 0
# Buzzer pin (change this depending on your setup)
buzzer_pin = machine.Pin(27, machine.Pin.OUT) # Pin 15 on the Xiao RP2040
# Create a PWM object to control the buzzer
buzzer = machine.PWM(buzzer_pin)
# Melody with notes and durations
melody = [
(REST, 2), (NOTE_D4, 4),
(NOTE_G4, -4), (NOTE_AS4, 8), (NOTE_A4, 4),
(NOTE_G4, 2), (NOTE_D5, 4),
(NOTE_C5, -2),
(NOTE_A4, -2),
(NOTE_G4, -4), (NOTE_AS4, 8), (NOTE_A4, 4),
(NOTE_F4, 2), (NOTE_GS4, 4),
(NOTE_D4, -1),
(NOTE_D4, 4),
(NOTE_G4, -4), (NOTE_AS4, 8), (NOTE_A4, 4),
(NOTE_G4, 2), (NOTE_D5, 4),
(NOTE_F5, 2), (NOTE_E5, 4),
(NOTE_DS5, 2), (NOTE_B4, 4),
(NOTE_DS5, -4), (NOTE_D5, 8), (NOTE_CS5, 4),
(NOTE_CS4, 2), (NOTE_B4, 4),
(NOTE_G4, -1),
(NOTE_AS4, 4),
(NOTE_D5, 2), (NOTE_AS4, 4),
(NOTE_D5, 2), (NOTE_AS4, 4),
(NOTE_DS5, 2), (NOTE_D5, 4),
(NOTE_CS5, 2), (NOTE_A4, 4),
(NOTE_AS4, -4), (NOTE_D5, 8), (NOTE_CS5, 4),
(NOTE_CS4, 2), (NOTE_D4, 4),
(NOTE_D5, -1),
(REST, 4), (NOTE_AS4, 4),
(NOTE_D5, 2), (NOTE_AS4, 4),
(NOTE_D5, 2), (NOTE_AS4, 4),
(NOTE_F5, 2), (NOTE_E5, 4),
(NOTE_DS5, 2), (NOTE_B4, 4),
(NOTE_DS5, -4), (NOTE_D5, 8), (NOTE_CS5, 4),
(NOTE_CS4, 2), (NOTE_AS4, 4),
(NOTE_G4, -1),
]
# Song speed (adjust if necessary)
tempo = 144
# Duration of a whole note (in milliseconds)
wholenote = (60000 * 4) / tempo
def play_tone(frequency, duration):
if frequency > 0:
buzzer.freq(frequency) # Set the frequency for the buzzer
buzzer.duty_u16(32768) # Control the intensity (50% intensity with duty_u16)
time.sleep(duration / 1000) # Play the note for the appropriate time
buzzer.duty_u16(0) # Turn off the sound after the duration
def play_melody():
for note, duration in melody:
if note == REST:
time.sleep(wholenote / duration / 1000) # Pause based on the note duration
else:
# Calculate the note duration
note_duration = wholenote / duration
play_tone(note, note_duration)
# Play the melody in the main loop
while True:
play_melody()
time.sleep(1) # A break before repeating the song (if needed)
For this project, while researching, I came across my instructor Cristian's work and I really liked the code he used for the Imperial March from Star Wars, written by Robson Couto (2019). I decided to take on the challenge, as he used Arduino IDE, while I am working with MicroPython in the Thonny program.
I visited the following link: Git Hub - Robson Couto because I wanted to make Hedwig's Theme from Harry Potter. I copied the code and used the ChatGPT tool for adjustments.
Did I face any difficulties?
Yes, I encountered some difficulties. The original code was written for Arduino IDE, and I needed to adapt it for MicroPython in the Thonny environment. When making the adaptation, I forgot to include the technical specifications of the microcontroller I was using. Once identified, I used the prompt: "convert Arduino code to MicroPython for a Xiao RP2040 with pin 27."
However, the code still didn’t work properly. I received the following error:
>>> %Run -c $EDITOR_CONTENT
MPY: soft reboot
Traceback (most recent call last):
File "", line 162, in
File "", line 158, in play_melody
File "", line 147, in play_tone
It appeared that the issue was because the PWM class in MicroPython for the Xiao RP2040 doesn't have a method called duty. Instead, you should use duty_u16() to set the PWM intensity value, which accepts a range from 0 to 65535, unlike the duty() method commonly used in other microcontrollers like the ESP32.
After making this adjustment, the code started working correctly.