MicroPhton Happy Birthday  code 
from machine import Pin
from machine import PWM
import time
# Create a PWM object in a pin
do=261
re=293
mi=329
fa=349
sol=392
la=440
si=494
do2=523
pwm = machine.PWM(Pin(3))  # IN RP2040 the led is in 5

while True:
    pwm.duty_u16(10000) # volumenz
    pwm.freq(do)  # Nota
    time.sleep(1) # Tiempo de nota
    pwm.duty_u16(0) # Configure frequency at 5000 Hz
    time.sleep(0.01) # Resceso
    
    pwm.duty_u16(10000) # volumenz
    pwm.freq(re)  # Nota
    time.sleep(1) # Tiempo de nota
    pwm.duty_u16(0) # Configure frequency at 5000 Hz
    time.sleep(0.01) # Resceso
    
    pwm.duty_u16(10000) # volumenz
    pwm.freq(mi)  # Nota
    time.sleep(1) # Tiempo de nota
    pwm.duty_u16(0) # Configure frequency at 5000 Hz
    time.sleep(0.01) # Resceso
    
    pwm.duty_u16(10000) # volumenz
    pwm.freq(fa)  # Nota
    time.sleep(1) # Tiempo de nota
    pwm.duty_u16(0) # Configure frequency at 5000 Hz
    time.sleep(0.01) # Resceso
    
    pwm.duty_u16(10000) # volumenz
    pwm.freq(sol)  # Nota
    time.sleep(1) # Tiempo de nota
    pwm.duty_u16(0) # Configure frequency at 5000 Hz
    time.sleep(0.01) # Resceso
    
    pwm.duty_u16(10000) # volumenz
    pwm.freq(la)  # Nota
    time.sleep(1) # Tiempo de nota
    pwm.duty_u16(0) # Configure frequency at 5000 Hz
    time.sleep(0.01) # Resceso
    
    pwm.duty_u16(10000) # volumenz
    pwm.freq(si)  # Nota
    time.sleep(1) # Tiempo de nota
    pwm.duty_u16(0) # Configure frequency at 5000 Hz
    time.sleep(0.01) # Resceso
    
    pwm.duty_u16(10000) # volumenz
    pwm.freq(do2)  # Nota
    time.sleep(1) # Tiempo de nota
    pwm.duty_u16(0) # Configure frequency at 5000 Hz
    time.sleep(0.01) # Resceso