diff options
| author | cheapie <no-email-for-you@example.com> | 2026-04-11 09:25:57 -0500 |
|---|---|---|
| committer | cheapie <no-email-for-you@example.com> | 2026-04-11 09:26:44 -0500 |
| commit | b1bf8b74fad97b2783a8b3bf33ed4a7830fc3004 (patch) | |
| tree | e7ae9f4e954e20b501783ee2e297c374826c2733 /digistuff.lua | |
| parent | 45e74cd1c255fb62aa06d40c92c637a534c65c78 (diff) | |
| download | celevator-b1bf8b74fad97b2783a8b3bf33ed4a7830fc3004.tar celevator-b1bf8b74fad97b2783a8b3bf33ed4a7830fc3004.tar.gz celevator-b1bf8b74fad97b2783a8b3bf33ed4a7830fc3004.tar.bz2 celevator-b1bf8b74fad97b2783a8b3bf33ed4a7830fc3004.tar.xz celevator-b1bf8b74fad97b2783a8b3bf33ed4a7830fc3004.zip | |
Add sounds to digistuff noteblock
Diffstat (limited to 'digistuff.lua')
| -rw-r--r-- | digistuff.lua | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/digistuff.lua b/digistuff.lua new file mode 100644 index 0000000..687b7e4 --- /dev/null +++ b/digistuff.lua @@ -0,0 +1,25 @@ +local nbsounds = { + --At the moment this is everything except the nudging buzzer + "celevator_brake_apply", + "celevator_brake_release", + "celevator_cabinet_close", + "celevator_cabinet_open", + "celevator_car_run", + "celevator_car_start", + "celevator_car_stop", + "celevator_chime_down", + "celevator_chime_up", + "celevator_controller_start", + "celevator_controller_stop", + "celevator_door_close", + "celevator_door_open", + "celevator_door_reverse", + "celevator_drive_run", + "celevator_motor_accel", + "celevator_motor_decel", + "celevator_motor_fast", + "celevator_motor_slow", + "celevator_pi_beep", +} + +for _,i in ipairs(nbsounds) do digistuff.register_nb_sound(i,i) end |
