aboutsummaryrefslogtreecommitdiff
path: root/NeoRuntime/special/template_base/script.py
blob: 208a9240d6990d0df1b9702168e11d4fdf5ad028 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
from luxcena_neo import NeoBehaviour

class Main(NeoBehaviour):

    def on_start(self):
        """ Execute when mode is selected. """
        print("Script started")

    def each_second(self):
        """ Execute once every second. """
        print("A second has passed")