rpi-pico-candle/main.py

19 lines
383 B
Python
Raw Normal View History

2022-11-28 22:49:02 +01:00
# SPDX-License-Identifier: MIT
#
# Little christmas candle
#
# Author: Nils Freydank <nils.freydank@datenschutz-ist-voll-doof.de>
# Year: 2022
# Copyright: MIT
import _thread
from light import flicker
from music import play_music
if __name__ == "__main__":
_thread.start_new_thread(flicker, ())
play_music()
# vim:fileencoding=utf-8:ts=4:syntax=python:expandtab