forked from project-alice-assistant/HermesLedControl
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCustomLedPattern.py
25 lines (20 loc) · 944 Bytes
/
CustomLedPattern.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
###########################################################################################################
# SUBMIT YOUR OWN CUSTOM PATTERN AND SHARE WITH THE WORLD YOUR LED ANIMATIONS!
# Visit https://github.com/project-alice-assistant/HermesLedControl/issues/new?template=custom-pattern-proposal.md
# for more informations
#
# Check models/LedPattern.py for the available functions
# Do NEVER have a function call a super class function directly!!
# It could cause a deadlock! Instead, call self._controller.THE_METHOD_YOU_WANT
#
# @author:
# @weblink:
# @email:
#
###########################################################################################################
from models.LedPattern import LedPattern
class CustomLedPattern(LedPattern):
def __init__(self, controller):
super(CustomLedPattern, self).__init__(controller)
def onStart(self, *args):
self._logger.warning('Implement me! /ledPatterns/CustomLedPattern.py')