rpi-pico-candle/main.py

19 lines
383 B
Python
Raw Permalink Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# 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