File: stdout.py

package info (click to toggle)
voctomix-outcasts 1.2.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 248 kB
  • sloc: python: 878; sh: 158; makefile: 18
file content (16 lines) | stat: -rw-r--r-- 324 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
"""
Plugin to provide a tally light interface via stdout.

This is an example that can be used to build other plugins.
"""

from .base_plugin import BasePlugin

__all__ = ['Stdout']

class Stdout(BasePlugin):
    def tally_on(self):
        print('Tally light on')

    def tally_off(self):
        print('Tally light off')