blob: b72a218b70c8c0b712523eaa77b4f38253af9d2e (
plain)
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
|
# SPDX-License-Identifier: LGPL-3.0-or-later
# Copyright (C) 2020 Daniel Thompson
"""Inverting pin wrapper
~~~~~~~~~~~~~~~~~~~~~~~~
"""
class Signal(object):
"""Simplified Signal class
.. note::
The normal C implementation of the Signal class used by MicroPython
doesn't work on the nRF family. This class provides a temporary
workaround until that can be addressed.
.. automethod:: __init__
"""
def __init__(self, pin, invert=False):
"""Create a Signal object by wrapping a pin."""
self.pin = pin
self.invert = invert
def __call__(self, v=None):
"""Shortcut for :py:meth:`.value`"""
return self.value(v)
def value(self, v=None):
"""Get or set the state of the signal.
:param v: Value to set, defaults to None (which means get the signal
state instead.
:returns: The state of the signal if v is None, otherwise None.
"""
if v == None:
return self.invert ^ self.pin.value()
self.pin.value(self.invert ^ bool(v))
def on(self):
"""Activate the signal."""
self.value(1)
def off(self):
"""Deactivate the signal."""
self.value(0)
|