annotate service/arduinoNode/devices.py @ 1424:458355ee1b99

arduinonode: per-device-type timing stats Ignore-this: de560ed6044cef5dacbf5d9b6334df99 darcs-hash:c0164f22d20b5673d1f42ffa4462ef4ed87b608d
author drewp <drewp@bigasterisk.com>
date Wed, 07 Aug 2019 20:55:00 -0700
parents f349fe25789c
children 4880a9868673
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
974
f707210c13bd new /output to post statements which devices can handle. led and lcd output working
drewp <drewp@bigasterisk.com>
parents: 971
diff changeset
1 from __future__ import division
1136
1e43ec4a5f23 build and import updates for rdfdb, etc
drewp <drewp@bigasterisk.com>
parents: 1110
diff changeset
2
1e43ec4a5f23 build and import updates for rdfdb, etc
drewp <drewp@bigasterisk.com>
parents: 1110
diff changeset
3 import itertools, logging, struct, os, sys
971
fbe72d44f15a only recompile if the C code is new. redo Device class api. single temperature sensor is working
drewp <drewp@bigasterisk.com>
parents: 969
diff changeset
4 from rdflib import Namespace, RDF, URIRef, Literal
981
d9bbbd8d86f6 arduinoNode: use -v for logging; support a PUT with subj+pred in query, obj in body
drewp <drewp@bigasterisk.com>
parents: 977
diff changeset
5 import time
969
70a5392b24d3 start arduinonode
drewp <drewp@bigasterisk.com>
parents:
diff changeset
6
1424
458355ee1b99 arduinonode: per-device-type timing stats
drewp <drewp@bigasterisk.com>
parents: 1140
diff changeset
7 from greplin import scales
458355ee1b99 arduinonode: per-device-type timing stats
drewp <drewp@bigasterisk.com>
parents: 1140
diff changeset
8
1136
1e43ec4a5f23 build and import updates for rdfdb, etc
drewp <drewp@bigasterisk.com>
parents: 1110
diff changeset
9 from devices_shared import RgbPixelsAnimation
1e43ec4a5f23 build and import updates for rdfdb, etc
drewp <drewp@bigasterisk.com>
parents: 1110
diff changeset
10
969
70a5392b24d3 start arduinonode
drewp <drewp@bigasterisk.com>
parents:
diff changeset
11 ROOM = Namespace('http://projects.bigasterisk.com/room/')
974
f707210c13bd new /output to post statements which devices can handle. led and lcd output working
drewp <drewp@bigasterisk.com>
parents: 971
diff changeset
12 XSD = Namespace('http://www.w3.org/2001/XMLSchema#')
1023
3e6fac8569cd multi-boards on one service, new devices, devices return their current
drewp <drewp@bigasterisk.com>
parents: 997
diff changeset
13 log = logging.getLogger()
969
70a5392b24d3 start arduinonode
drewp <drewp@bigasterisk.com>
parents:
diff changeset
14
971
fbe72d44f15a only recompile if the C code is new. redo Device class api. single temperature sensor is working
drewp <drewp@bigasterisk.com>
parents: 969
diff changeset
15 def readLine(read):
fbe72d44f15a only recompile if the C code is new. redo Device class api. single temperature sensor is working
drewp <drewp@bigasterisk.com>
parents: 969
diff changeset
16 buf = ''
fbe72d44f15a only recompile if the C code is new. redo Device class api. single temperature sensor is working
drewp <drewp@bigasterisk.com>
parents: 969
diff changeset
17 for c in iter(lambda: read(1), '\n'):
fbe72d44f15a only recompile if the C code is new. redo Device class api. single temperature sensor is working
drewp <drewp@bigasterisk.com>
parents: 969
diff changeset
18 buf += c
fbe72d44f15a only recompile if the C code is new. redo Device class api. single temperature sensor is working
drewp <drewp@bigasterisk.com>
parents: 969
diff changeset
19 return buf
fbe72d44f15a only recompile if the C code is new. redo Device class api. single temperature sensor is working
drewp <drewp@bigasterisk.com>
parents: 969
diff changeset
20
fbe72d44f15a only recompile if the C code is new. redo Device class api. single temperature sensor is working
drewp <drewp@bigasterisk.com>
parents: 969
diff changeset
21 class DeviceType(object):
fbe72d44f15a only recompile if the C code is new. redo Device class api. single temperature sensor is working
drewp <drewp@bigasterisk.com>
parents: 969
diff changeset
22 deviceType = None
fbe72d44f15a only recompile if the C code is new. redo Device class api. single temperature sensor is working
drewp <drewp@bigasterisk.com>
parents: 969
diff changeset
23 @classmethod
fbe72d44f15a only recompile if the C code is new. redo Device class api. single temperature sensor is working
drewp <drewp@bigasterisk.com>
parents: 969
diff changeset
24 def findInstances(cls, graph, board):
fbe72d44f15a only recompile if the C code is new. redo Device class api. single temperature sensor is working
drewp <drewp@bigasterisk.com>
parents: 969
diff changeset
25 """
fbe72d44f15a only recompile if the C code is new. redo Device class api. single temperature sensor is working
drewp <drewp@bigasterisk.com>
parents: 969
diff changeset
26 return any number of instances of this class for all the separately
fbe72d44f15a only recompile if the C code is new. redo Device class api. single temperature sensor is working
drewp <drewp@bigasterisk.com>
parents: 969
diff changeset
27 controlled devices on the board. Two LEDS makes two instances,
fbe72d44f15a only recompile if the C code is new. redo Device class api. single temperature sensor is working
drewp <drewp@bigasterisk.com>
parents: 969
diff changeset
28 but two sensors on the same onewire bus makes only one device
fbe72d44f15a only recompile if the C code is new. redo Device class api. single temperature sensor is working
drewp <drewp@bigasterisk.com>
parents: 969
diff changeset
29 (which yields more statements).
fbe72d44f15a only recompile if the C code is new. redo Device class api. single temperature sensor is working
drewp <drewp@bigasterisk.com>
parents: 969
diff changeset
30 """
fbe72d44f15a only recompile if the C code is new. redo Device class api. single temperature sensor is working
drewp <drewp@bigasterisk.com>
parents: 969
diff changeset
31 for row in graph.query("""SELECT ?dev ?pinNumber WHERE {
fbe72d44f15a only recompile if the C code is new. redo Device class api. single temperature sensor is working
drewp <drewp@bigasterisk.com>
parents: 969
diff changeset
32 ?board :hasPin ?pin .
fbe72d44f15a only recompile if the C code is new. redo Device class api. single temperature sensor is working
drewp <drewp@bigasterisk.com>
parents: 969
diff changeset
33 ?pin :pinNumber ?pinNumber;
fbe72d44f15a only recompile if the C code is new. redo Device class api. single temperature sensor is working
drewp <drewp@bigasterisk.com>
parents: 969
diff changeset
34 :connectedTo ?dev .
fbe72d44f15a only recompile if the C code is new. redo Device class api. single temperature sensor is working
drewp <drewp@bigasterisk.com>
parents: 969
diff changeset
35 ?dev a ?thisType .
fbe72d44f15a only recompile if the C code is new. redo Device class api. single temperature sensor is working
drewp <drewp@bigasterisk.com>
parents: 969
diff changeset
36 } ORDER BY ?dev""",
fbe72d44f15a only recompile if the C code is new. redo Device class api. single temperature sensor is working
drewp <drewp@bigasterisk.com>
parents: 969
diff changeset
37 initBindings=dict(board=board,
fbe72d44f15a only recompile if the C code is new. redo Device class api. single temperature sensor is working
drewp <drewp@bigasterisk.com>
parents: 969
diff changeset
38 thisType=cls.deviceType),
fbe72d44f15a only recompile if the C code is new. redo Device class api. single temperature sensor is working
drewp <drewp@bigasterisk.com>
parents: 969
diff changeset
39 initNs={'': ROOM}):
1023
3e6fac8569cd multi-boards on one service, new devices, devices return their current
drewp <drewp@bigasterisk.com>
parents: 997
diff changeset
40 log.info('found %s, a %s', row.dev, cls.deviceType)
974
f707210c13bd new /output to post statements which devices can handle. led and lcd output working
drewp <drewp@bigasterisk.com>
parents: 971
diff changeset
41 yield cls(graph, row.dev, int(row.pinNumber))
971
fbe72d44f15a only recompile if the C code is new. redo Device class api. single temperature sensor is working
drewp <drewp@bigasterisk.com>
parents: 969
diff changeset
42
fbe72d44f15a only recompile if the C code is new. redo Device class api. single temperature sensor is working
drewp <drewp@bigasterisk.com>
parents: 969
diff changeset
43 # subclasses may add args to this
fbe72d44f15a only recompile if the C code is new. redo Device class api. single temperature sensor is working
drewp <drewp@bigasterisk.com>
parents: 969
diff changeset
44 def __init__(self, graph, uri, pinNumber):
1424
458355ee1b99 arduinonode: per-device-type timing stats
drewp <drewp@bigasterisk.com>
parents: 1140
diff changeset
45 scales.init(self, self.__class__.__name__)
458355ee1b99 arduinonode: per-device-type timing stats
drewp <drewp@bigasterisk.com>
parents: 1140
diff changeset
46 self._stats = scales.collection(self.__class__.__name__,
458355ee1b99 arduinonode: per-device-type timing stats
drewp <drewp@bigasterisk.com>
parents: 1140
diff changeset
47 scales.PmfStat('poll'),
458355ee1b99 arduinonode: per-device-type timing stats
drewp <drewp@bigasterisk.com>
parents: 1140
diff changeset
48 scales.PmfStat('output'),
458355ee1b99 arduinonode: per-device-type timing stats
drewp <drewp@bigasterisk.com>
parents: 1140
diff changeset
49 )
969
70a5392b24d3 start arduinonode
drewp <drewp@bigasterisk.com>
parents:
diff changeset
50 self.graph, self.uri = graph, uri
971
fbe72d44f15a only recompile if the C code is new. redo Device class api. single temperature sensor is working
drewp <drewp@bigasterisk.com>
parents: 969
diff changeset
51 self.pinNumber = pinNumber
1023
3e6fac8569cd multi-boards on one service, new devices, devices return their current
drewp <drewp@bigasterisk.com>
parents: 997
diff changeset
52 self.hostStateInit()
3e6fac8569cd multi-boards on one service, new devices, devices return their current
drewp <drewp@bigasterisk.com>
parents: 997
diff changeset
53
3e6fac8569cd multi-boards on one service, new devices, devices return their current
drewp <drewp@bigasterisk.com>
parents: 997
diff changeset
54 def hostStateInit(self):
3e6fac8569cd multi-boards on one service, new devices, devices return their current
drewp <drewp@bigasterisk.com>
parents: 997
diff changeset
55 """
3e6fac8569cd multi-boards on one service, new devices, devices return their current
drewp <drewp@bigasterisk.com>
parents: 997
diff changeset
56 If you don't want to use __init__, you can use this to set up
3e6fac8569cd multi-boards on one service, new devices, devices return their current
drewp <drewp@bigasterisk.com>
parents: 997
diff changeset
57 whatever storage you might need for hostStatements
3e6fac8569cd multi-boards on one service, new devices, devices return their current
drewp <drewp@bigasterisk.com>
parents: 997
diff changeset
58 """
975
f3023410d875 polymer board debug page with working output widgets
drewp <drewp@bigasterisk.com>
parents: 974
diff changeset
59
f3023410d875 polymer board debug page with working output widgets
drewp <drewp@bigasterisk.com>
parents: 974
diff changeset
60 def description(self):
f3023410d875 polymer board debug page with working output widgets
drewp <drewp@bigasterisk.com>
parents: 974
diff changeset
61 return {
f3023410d875 polymer board debug page with working output widgets
drewp <drewp@bigasterisk.com>
parents: 974
diff changeset
62 'uri': self.uri,
f3023410d875 polymer board debug page with working output widgets
drewp <drewp@bigasterisk.com>
parents: 974
diff changeset
63 'className': self.__class__.__name__,
1038
ffe6a00c6cef server/browser graph sync. cut dependency on the WS version. merge some changes between arduino/pi code.
drewp <drewp@bigasterisk.com>
parents: 1035
diff changeset
64 'pinNumber': getattr(self, 'pinNumber', None),
975
f3023410d875 polymer board debug page with working output widgets
drewp <drewp@bigasterisk.com>
parents: 974
diff changeset
65 'outputPatterns': self.outputPatterns(),
f3023410d875 polymer board debug page with working output widgets
drewp <drewp@bigasterisk.com>
parents: 974
diff changeset
66 'watchPrefixes': self.watchPrefixes(),
f3023410d875 polymer board debug page with working output widgets
drewp <drewp@bigasterisk.com>
parents: 974
diff changeset
67 'outputWidgets': self.outputWidgets(),
f3023410d875 polymer board debug page with working output widgets
drewp <drewp@bigasterisk.com>
parents: 974
diff changeset
68 }
969
70a5392b24d3 start arduinonode
drewp <drewp@bigasterisk.com>
parents:
diff changeset
69
70a5392b24d3 start arduinonode
drewp <drewp@bigasterisk.com>
parents:
diff changeset
70 def readFromPoll(self, read):
70a5392b24d3 start arduinonode
drewp <drewp@bigasterisk.com>
parents:
diff changeset
71 """
70a5392b24d3 start arduinonode
drewp <drewp@bigasterisk.com>
parents:
diff changeset
72 read an update message returned as part of a poll bundle. This may
70a5392b24d3 start arduinonode
drewp <drewp@bigasterisk.com>
parents:
diff changeset
73 consume a varying number of bytes depending on the type of
70a5392b24d3 start arduinonode
drewp <drewp@bigasterisk.com>
parents:
diff changeset
74 input (e.g. IR receiver).
70a5392b24d3 start arduinonode
drewp <drewp@bigasterisk.com>
parents:
diff changeset
75 Returns rdf statements.
70a5392b24d3 start arduinonode
drewp <drewp@bigasterisk.com>
parents:
diff changeset
76 """
971
fbe72d44f15a only recompile if the C code is new. redo Device class api. single temperature sensor is working
drewp <drewp@bigasterisk.com>
parents: 969
diff changeset
77 raise NotImplementedError('readFromPoll in %s' % self.__class__)
fbe72d44f15a only recompile if the C code is new. redo Device class api. single temperature sensor is working
drewp <drewp@bigasterisk.com>
parents: 969
diff changeset
78
1139
db955e7943af arduinonode reads config from etcd. use pushConfig.py to inform all nodes
drewp <drewp@bigasterisk.com>
parents: 1136
diff changeset
79 def wantIdleOutput(self):
db955e7943af arduinonode reads config from etcd. use pushConfig.py to inform all nodes
drewp <drewp@bigasterisk.com>
parents: 1136
diff changeset
80 return False
db955e7943af arduinonode reads config from etcd. use pushConfig.py to inform all nodes
drewp <drewp@bigasterisk.com>
parents: 1136
diff changeset
81
db955e7943af arduinonode reads config from etcd. use pushConfig.py to inform all nodes
drewp <drewp@bigasterisk.com>
parents: 1136
diff changeset
82 def outputIdle(self, write):
db955e7943af arduinonode reads config from etcd. use pushConfig.py to inform all nodes
drewp <drewp@bigasterisk.com>
parents: 1136
diff changeset
83 return
db955e7943af arduinonode reads config from etcd. use pushConfig.py to inform all nodes
drewp <drewp@bigasterisk.com>
parents: 1136
diff changeset
84
1023
3e6fac8569cd multi-boards on one service, new devices, devices return their current
drewp <drewp@bigasterisk.com>
parents: 997
diff changeset
85 def hostStatements(self):
3e6fac8569cd multi-boards on one service, new devices, devices return their current
drewp <drewp@bigasterisk.com>
parents: 997
diff changeset
86 """
3e6fac8569cd multi-boards on one service, new devices, devices return their current
drewp <drewp@bigasterisk.com>
parents: 997
diff changeset
87 Like readFromPoll but these statements come from the host-side
3e6fac8569cd multi-boards on one service, new devices, devices return their current
drewp <drewp@bigasterisk.com>
parents: 997
diff changeset
88 python code, not the connected device. Include output state
3e6fac8569cd multi-boards on one service, new devices, devices return their current
drewp <drewp@bigasterisk.com>
parents: 997
diff changeset
89 (e.g. light brightness) if its master version is in this
3e6fac8569cd multi-boards on one service, new devices, devices return their current
drewp <drewp@bigasterisk.com>
parents: 997
diff changeset
90 object. This method is called on /graph requests so it should
3e6fac8569cd multi-boards on one service, new devices, devices return their current
drewp <drewp@bigasterisk.com>
parents: 997
diff changeset
91 be fast.
3e6fac8569cd multi-boards on one service, new devices, devices return their current
drewp <drewp@bigasterisk.com>
parents: 997
diff changeset
92 """
3e6fac8569cd multi-boards on one service, new devices, devices return their current
drewp <drewp@bigasterisk.com>
parents: 997
diff changeset
93 return []
3e6fac8569cd multi-boards on one service, new devices, devices return their current
drewp <drewp@bigasterisk.com>
parents: 997
diff changeset
94
975
f3023410d875 polymer board debug page with working output widgets
drewp <drewp@bigasterisk.com>
parents: 974
diff changeset
95 def watchPrefixes(self):
f3023410d875 polymer board debug page with working output widgets
drewp <drewp@bigasterisk.com>
parents: 974
diff changeset
96 """
f3023410d875 polymer board debug page with working output widgets
drewp <drewp@bigasterisk.com>
parents: 974
diff changeset
97 subj,pred pairs of the statements that might be returned from
f3023410d875 polymer board debug page with working output widgets
drewp <drewp@bigasterisk.com>
parents: 974
diff changeset
98 readFromPoll, so the dashboard knows what it should
f3023410d875 polymer board debug page with working output widgets
drewp <drewp@bigasterisk.com>
parents: 974
diff changeset
99 watch. This should be eliminated, as the dashboard should just
f3023410d875 polymer board debug page with working output widgets
drewp <drewp@bigasterisk.com>
parents: 974
diff changeset
100 always watch the whole tree of statements starting self.uri
f3023410d875 polymer board debug page with working output widgets
drewp <drewp@bigasterisk.com>
parents: 974
diff changeset
101 """
f3023410d875 polymer board debug page with working output widgets
drewp <drewp@bigasterisk.com>
parents: 974
diff changeset
102 return []
f3023410d875 polymer board debug page with working output widgets
drewp <drewp@bigasterisk.com>
parents: 974
diff changeset
103
971
fbe72d44f15a only recompile if the C code is new. redo Device class api. single temperature sensor is working
drewp <drewp@bigasterisk.com>
parents: 969
diff changeset
104 def generateIncludes(self):
975
f3023410d875 polymer board debug page with working output widgets
drewp <drewp@bigasterisk.com>
parents: 974
diff changeset
105 """filenames of .h files to #include"""
971
fbe72d44f15a only recompile if the C code is new. redo Device class api. single temperature sensor is working
drewp <drewp@bigasterisk.com>
parents: 969
diff changeset
106 return []
969
70a5392b24d3 start arduinonode
drewp <drewp@bigasterisk.com>
parents:
diff changeset
107
971
fbe72d44f15a only recompile if the C code is new. redo Device class api. single temperature sensor is working
drewp <drewp@bigasterisk.com>
parents: 969
diff changeset
108 def generateArduinoLibs(self):
975
f3023410d875 polymer board debug page with working output widgets
drewp <drewp@bigasterisk.com>
parents: 974
diff changeset
109 """names of libraries for the ARDUINO_LIBS line in the makefile"""
971
fbe72d44f15a only recompile if the C code is new. redo Device class api. single temperature sensor is working
drewp <drewp@bigasterisk.com>
parents: 969
diff changeset
110 return []
fbe72d44f15a only recompile if the C code is new. redo Device class api. single temperature sensor is working
drewp <drewp@bigasterisk.com>
parents: 969
diff changeset
111
fbe72d44f15a only recompile if the C code is new. redo Device class api. single temperature sensor is working
drewp <drewp@bigasterisk.com>
parents: 969
diff changeset
112 def generateGlobalCode(self):
990
11fff6301027 support for device code in the idle loop
drewp <drewp@bigasterisk.com>
parents: 981
diff changeset
113 """C code to emit in the global section.
11fff6301027 support for device code in the idle loop
drewp <drewp@bigasterisk.com>
parents: 981
diff changeset
114
11fff6301027 support for device code in the idle loop
drewp <drewp@bigasterisk.com>
parents: 981
diff changeset
115 Note that 'frame' (uint8) is available and increments each frame.
11fff6301027 support for device code in the idle loop
drewp <drewp@bigasterisk.com>
parents: 981
diff changeset
116 """
971
fbe72d44f15a only recompile if the C code is new. redo Device class api. single temperature sensor is working
drewp <drewp@bigasterisk.com>
parents: 969
diff changeset
117 return ''
fbe72d44f15a only recompile if the C code is new. redo Device class api. single temperature sensor is working
drewp <drewp@bigasterisk.com>
parents: 969
diff changeset
118
969
70a5392b24d3 start arduinonode
drewp <drewp@bigasterisk.com>
parents:
diff changeset
119 def generateSetupCode(self):
975
f3023410d875 polymer board debug page with working output widgets
drewp <drewp@bigasterisk.com>
parents: 974
diff changeset
120 """C code to emit in setup()"""
969
70a5392b24d3 start arduinonode
drewp <drewp@bigasterisk.com>
parents:
diff changeset
121 return ''
70a5392b24d3 start arduinonode
drewp <drewp@bigasterisk.com>
parents:
diff changeset
122
990
11fff6301027 support for device code in the idle loop
drewp <drewp@bigasterisk.com>
parents: 981
diff changeset
123 def generateIdleCode(self):
11fff6301027 support for device code in the idle loop
drewp <drewp@bigasterisk.com>
parents: 981
diff changeset
124 """C code to emit in the serial-read loop"""
11fff6301027 support for device code in the idle loop
drewp <drewp@bigasterisk.com>
parents: 981
diff changeset
125 return ''
11fff6301027 support for device code in the idle loop
drewp <drewp@bigasterisk.com>
parents: 981
diff changeset
126
969
70a5392b24d3 start arduinonode
drewp <drewp@bigasterisk.com>
parents:
diff changeset
127 def generatePollCode(self):
975
f3023410d875 polymer board debug page with working output widgets
drewp <drewp@bigasterisk.com>
parents: 974
diff changeset
128 """
f3023410d875 polymer board debug page with working output widgets
drewp <drewp@bigasterisk.com>
parents: 974
diff changeset
129 C code to run a poll update. This should Serial.write its output
f3023410d875 polymer board debug page with working output widgets
drewp <drewp@bigasterisk.com>
parents: 974
diff changeset
130 for readFromPoll to consume. If this returns nothing, we don't
f3023410d875 polymer board debug page with working output widgets
drewp <drewp@bigasterisk.com>
parents: 974
diff changeset
131 try to poll this device.
f3023410d875 polymer board debug page with working output widgets
drewp <drewp@bigasterisk.com>
parents: 974
diff changeset
132 """
969
70a5392b24d3 start arduinonode
drewp <drewp@bigasterisk.com>
parents:
diff changeset
133 return ''
70a5392b24d3 start arduinonode
drewp <drewp@bigasterisk.com>
parents:
diff changeset
134
971
fbe72d44f15a only recompile if the C code is new. redo Device class api. single temperature sensor is working
drewp <drewp@bigasterisk.com>
parents: 969
diff changeset
135 def generateActionCode(self):
fbe72d44f15a only recompile if the C code is new. redo Device class api. single temperature sensor is working
drewp <drewp@bigasterisk.com>
parents: 969
diff changeset
136 """
974
f707210c13bd new /output to post statements which devices can handle. led and lcd output working
drewp <drewp@bigasterisk.com>
parents: 971
diff changeset
137 If the host side runs sendOutput, this C code will be run on the
f707210c13bd new /output to post statements which devices can handle. led and lcd output working
drewp <drewp@bigasterisk.com>
parents: 971
diff changeset
138 board to receive whatever sendOutput writes. Each sendOutput
f707210c13bd new /output to post statements which devices can handle. led and lcd output working
drewp <drewp@bigasterisk.com>
parents: 971
diff changeset
139 write(buf) call should be matched with len(buf) Serial.read()
f707210c13bd new /output to post statements which devices can handle. led and lcd output working
drewp <drewp@bigasterisk.com>
parents: 971
diff changeset
140 calls in here.
971
fbe72d44f15a only recompile if the C code is new. redo Device class api. single temperature sensor is working
drewp <drewp@bigasterisk.com>
parents: 969
diff changeset
141 """
fbe72d44f15a only recompile if the C code is new. redo Device class api. single temperature sensor is working
drewp <drewp@bigasterisk.com>
parents: 969
diff changeset
142 return ''
fbe72d44f15a only recompile if the C code is new. redo Device class api. single temperature sensor is working
drewp <drewp@bigasterisk.com>
parents: 969
diff changeset
143
974
f707210c13bd new /output to post statements which devices can handle. led and lcd output working
drewp <drewp@bigasterisk.com>
parents: 971
diff changeset
144 def outputPatterns(self):
f707210c13bd new /output to post statements which devices can handle. led and lcd output working
drewp <drewp@bigasterisk.com>
parents: 971
diff changeset
145 """
f707210c13bd new /output to post statements which devices can handle. led and lcd output working
drewp <drewp@bigasterisk.com>
parents: 971
diff changeset
146 Triple patterns, using None as a wildcard, that should be routed
f707210c13bd new /output to post statements which devices can handle. led and lcd output working
drewp <drewp@bigasterisk.com>
parents: 971
diff changeset
147 to sendOutput
f707210c13bd new /output to post statements which devices can handle. led and lcd output working
drewp <drewp@bigasterisk.com>
parents: 971
diff changeset
148 """
f707210c13bd new /output to post statements which devices can handle. led and lcd output working
drewp <drewp@bigasterisk.com>
parents: 971
diff changeset
149 return []
f707210c13bd new /output to post statements which devices can handle. led and lcd output working
drewp <drewp@bigasterisk.com>
parents: 971
diff changeset
150
975
f3023410d875 polymer board debug page with working output widgets
drewp <drewp@bigasterisk.com>
parents: 974
diff changeset
151 def outputWidgets(self):
f3023410d875 polymer board debug page with working output widgets
drewp <drewp@bigasterisk.com>
parents: 974
diff changeset
152 """
f3023410d875 polymer board debug page with working output widgets
drewp <drewp@bigasterisk.com>
parents: 974
diff changeset
153 structs to make output widgets on the dashboard. ~1 of these per
f3023410d875 polymer board debug page with working output widgets
drewp <drewp@bigasterisk.com>
parents: 974
diff changeset
154 handler you have in sendOutput
f3023410d875 polymer board debug page with working output widgets
drewp <drewp@bigasterisk.com>
parents: 974
diff changeset
155 """
f3023410d875 polymer board debug page with working output widgets
drewp <drewp@bigasterisk.com>
parents: 974
diff changeset
156 return []
f3023410d875 polymer board debug page with working output widgets
drewp <drewp@bigasterisk.com>
parents: 974
diff changeset
157
974
f707210c13bd new /output to post statements which devices can handle. led and lcd output working
drewp <drewp@bigasterisk.com>
parents: 971
diff changeset
158 def sendOutput(self, statements, write, read):
f707210c13bd new /output to post statements which devices can handle. led and lcd output working
drewp <drewp@bigasterisk.com>
parents: 971
diff changeset
159 """
f707210c13bd new /output to post statements which devices can handle. led and lcd output working
drewp <drewp@bigasterisk.com>
parents: 971
diff changeset
160 If we got statements that match this class's outputPatterns, this
f707210c13bd new /output to post statements which devices can handle. led and lcd output working
drewp <drewp@bigasterisk.com>
parents: 971
diff changeset
161 will be called with the statements that matched, and a serial
f707210c13bd new /output to post statements which devices can handle. led and lcd output working
drewp <drewp@bigasterisk.com>
parents: 971
diff changeset
162 write method. What you write here will be available as
f707210c13bd new /output to post statements which devices can handle. led and lcd output working
drewp <drewp@bigasterisk.com>
parents: 971
diff changeset
163 Serial.read in the generateActionCode C code.
f707210c13bd new /output to post statements which devices can handle. led and lcd output working
drewp <drewp@bigasterisk.com>
parents: 971
diff changeset
164
f707210c13bd new /output to post statements which devices can handle. led and lcd output working
drewp <drewp@bigasterisk.com>
parents: 971
diff changeset
165 Todo: it would be fine to read back confirmations or
f707210c13bd new /output to post statements which devices can handle. led and lcd output working
drewp <drewp@bigasterisk.com>
parents: 971
diff changeset
166 whatever. Just need a way to collect them into graph statements.
f707210c13bd new /output to post statements which devices can handle. led and lcd output working
drewp <drewp@bigasterisk.com>
parents: 971
diff changeset
167 """
f707210c13bd new /output to post statements which devices can handle. led and lcd output working
drewp <drewp@bigasterisk.com>
parents: 971
diff changeset
168 raise NotImplementedError
f707210c13bd new /output to post statements which devices can handle. led and lcd output working
drewp <drewp@bigasterisk.com>
parents: 971
diff changeset
169
971
fbe72d44f15a only recompile if the C code is new. redo Device class api. single temperature sensor is working
drewp <drewp@bigasterisk.com>
parents: 969
diff changeset
170 _knownTypes = set()
fbe72d44f15a only recompile if the C code is new. redo Device class api. single temperature sensor is working
drewp <drewp@bigasterisk.com>
parents: 969
diff changeset
171 def register(deviceType):
fbe72d44f15a only recompile if the C code is new. redo Device class api. single temperature sensor is working
drewp <drewp@bigasterisk.com>
parents: 969
diff changeset
172 _knownTypes.add(deviceType)
fbe72d44f15a only recompile if the C code is new. redo Device class api. single temperature sensor is working
drewp <drewp@bigasterisk.com>
parents: 969
diff changeset
173 return deviceType
969
70a5392b24d3 start arduinonode
drewp <drewp@bigasterisk.com>
parents:
diff changeset
174
971
fbe72d44f15a only recompile if the C code is new. redo Device class api. single temperature sensor is working
drewp <drewp@bigasterisk.com>
parents: 969
diff changeset
175 @register
fbe72d44f15a only recompile if the C code is new. redo Device class api. single temperature sensor is working
drewp <drewp@bigasterisk.com>
parents: 969
diff changeset
176 class PingInput(DeviceType):
fbe72d44f15a only recompile if the C code is new. redo Device class api. single temperature sensor is working
drewp <drewp@bigasterisk.com>
parents: 969
diff changeset
177 @classmethod
fbe72d44f15a only recompile if the C code is new. redo Device class api. single temperature sensor is working
drewp <drewp@bigasterisk.com>
parents: 969
diff changeset
178 def findInstances(cls, graph, board):
fbe72d44f15a only recompile if the C code is new. redo Device class api. single temperature sensor is working
drewp <drewp@bigasterisk.com>
parents: 969
diff changeset
179 return [cls(graph, board, None)]
fbe72d44f15a only recompile if the C code is new. redo Device class api. single temperature sensor is working
drewp <drewp@bigasterisk.com>
parents: 969
diff changeset
180
969
70a5392b24d3 start arduinonode
drewp <drewp@bigasterisk.com>
parents:
diff changeset
181 def generatePollCode(self):
70a5392b24d3 start arduinonode
drewp <drewp@bigasterisk.com>
parents:
diff changeset
182 return "Serial.write('k');"
975
f3023410d875 polymer board debug page with working output widgets
drewp <drewp@bigasterisk.com>
parents: 974
diff changeset
183
969
70a5392b24d3 start arduinonode
drewp <drewp@bigasterisk.com>
parents:
diff changeset
184 def readFromPoll(self, read):
1023
3e6fac8569cd multi-boards on one service, new devices, devices return their current
drewp <drewp@bigasterisk.com>
parents: 997
diff changeset
185 byte = read(1)
3e6fac8569cd multi-boards on one service, new devices, devices return their current
drewp <drewp@bigasterisk.com>
parents: 997
diff changeset
186 if byte != 'k':
3e6fac8569cd multi-boards on one service, new devices, devices return their current
drewp <drewp@bigasterisk.com>
parents: 997
diff changeset
187 raise ValueError('invalid ping response: chr(%s)' % ord(byte))
969
70a5392b24d3 start arduinonode
drewp <drewp@bigasterisk.com>
parents:
diff changeset
188 return [(self.uri, ROOM['ping'], ROOM['ok'])]
70a5392b24d3 start arduinonode
drewp <drewp@bigasterisk.com>
parents:
diff changeset
189
975
f3023410d875 polymer board debug page with working output widgets
drewp <drewp@bigasterisk.com>
parents: 974
diff changeset
190 def watchPrefixes(self):
f3023410d875 polymer board debug page with working output widgets
drewp <drewp@bigasterisk.com>
parents: 974
diff changeset
191 return [(self.uri, ROOM['ping'])]
f3023410d875 polymer board debug page with working output widgets
drewp <drewp@bigasterisk.com>
parents: 974
diff changeset
192
971
fbe72d44f15a only recompile if the C code is new. redo Device class api. single temperature sensor is working
drewp <drewp@bigasterisk.com>
parents: 969
diff changeset
193 @register
fbe72d44f15a only recompile if the C code is new. redo Device class api. single temperature sensor is working
drewp <drewp@bigasterisk.com>
parents: 969
diff changeset
194 class MotionSensorInput(DeviceType):
fbe72d44f15a only recompile if the C code is new. redo Device class api. single temperature sensor is working
drewp <drewp@bigasterisk.com>
parents: 969
diff changeset
195 deviceType = ROOM['MotionSensor']
1056
d2007482aec5 start sending oneshot events from some devices
drewp <drewp@bigasterisk.com>
parents: 1038
diff changeset
196 def __init__(self, graph, uri, pinNumber):
d2007482aec5 start sending oneshot events from some devices
drewp <drewp@bigasterisk.com>
parents: 1038
diff changeset
197 DeviceType.__init__(self, graph, uri, pinNumber)
d2007482aec5 start sending oneshot events from some devices
drewp <drewp@bigasterisk.com>
parents: 1038
diff changeset
198 self.lastRead = None
d2007482aec5 start sending oneshot events from some devices
drewp <drewp@bigasterisk.com>
parents: 1038
diff changeset
199
969
70a5392b24d3 start arduinonode
drewp <drewp@bigasterisk.com>
parents:
diff changeset
200 def generateSetupCode(self):
70a5392b24d3 start arduinonode
drewp <drewp@bigasterisk.com>
parents:
diff changeset
201 return 'pinMode(%(pin)d, INPUT); digitalWrite(%(pin)d, LOW);' % {
974
f707210c13bd new /output to post statements which devices can handle. led and lcd output working
drewp <drewp@bigasterisk.com>
parents: 971
diff changeset
202 'pin': self.pinNumber,
969
70a5392b24d3 start arduinonode
drewp <drewp@bigasterisk.com>
parents:
diff changeset
203 }
70a5392b24d3 start arduinonode
drewp <drewp@bigasterisk.com>
parents:
diff changeset
204
70a5392b24d3 start arduinonode
drewp <drewp@bigasterisk.com>
parents:
diff changeset
205 def generatePollCode(self):
70a5392b24d3 start arduinonode
drewp <drewp@bigasterisk.com>
parents:
diff changeset
206 return "Serial.write(digitalRead(%(pin)d) ? 'y' : 'n');" % {
974
f707210c13bd new /output to post statements which devices can handle. led and lcd output working
drewp <drewp@bigasterisk.com>
parents: 971
diff changeset
207 'pin': self.pinNumber
969
70a5392b24d3 start arduinonode
drewp <drewp@bigasterisk.com>
parents:
diff changeset
208 }
70a5392b24d3 start arduinonode
drewp <drewp@bigasterisk.com>
parents:
diff changeset
209
70a5392b24d3 start arduinonode
drewp <drewp@bigasterisk.com>
parents:
diff changeset
210 def readFromPoll(self, read):
70a5392b24d3 start arduinonode
drewp <drewp@bigasterisk.com>
parents:
diff changeset
211 b = read(1)
70a5392b24d3 start arduinonode
drewp <drewp@bigasterisk.com>
parents:
diff changeset
212 if b not in 'yn':
70a5392b24d3 start arduinonode
drewp <drewp@bigasterisk.com>
parents:
diff changeset
213 raise ValueError('unexpected response %r' % b)
70a5392b24d3 start arduinonode
drewp <drewp@bigasterisk.com>
parents:
diff changeset
214 motion = b == 'y'
1056
d2007482aec5 start sending oneshot events from some devices
drewp <drewp@bigasterisk.com>
parents: 1038
diff changeset
215
d2007482aec5 start sending oneshot events from some devices
drewp <drewp@bigasterisk.com>
parents: 1038
diff changeset
216 oneshot = []
d2007482aec5 start sending oneshot events from some devices
drewp <drewp@bigasterisk.com>
parents: 1038
diff changeset
217 if self.lastRead is not None and motion != self.lastRead:
d2007482aec5 start sending oneshot events from some devices
drewp <drewp@bigasterisk.com>
parents: 1038
diff changeset
218 oneshot = [(self.uri, ROOM['sees'], ROOM['motionStart'])]
d2007482aec5 start sending oneshot events from some devices
drewp <drewp@bigasterisk.com>
parents: 1038
diff changeset
219 self.lastRead = motion
d2007482aec5 start sending oneshot events from some devices
drewp <drewp@bigasterisk.com>
parents: 1038
diff changeset
220
d2007482aec5 start sending oneshot events from some devices
drewp <drewp@bigasterisk.com>
parents: 1038
diff changeset
221 return {'latest': [
981
d9bbbd8d86f6 arduinoNode: use -v for logging; support a PUT with subj+pred in query, obj in body
drewp <drewp@bigasterisk.com>
parents: 977
diff changeset
222 (self.uri, ROOM['sees'],
d9bbbd8d86f6 arduinoNode: use -v for logging; support a PUT with subj+pred in query, obj in body
drewp <drewp@bigasterisk.com>
parents: 977
diff changeset
223 ROOM['motion'] if motion else ROOM['noMotion']),
1073
054fccde9a49 'seesRecently30' in arduinoNode
drewp <drewp@bigasterisk.com>
parents: 1062
diff changeset
224 ] + self.recentMotionStatements(motion),
054fccde9a49 'seesRecently30' in arduinoNode
drewp <drewp@bigasterisk.com>
parents: 1062
diff changeset
225 'oneshot': oneshot}
969
70a5392b24d3 start arduinonode
drewp <drewp@bigasterisk.com>
parents:
diff changeset
226
1073
054fccde9a49 'seesRecently30' in arduinoNode
drewp <drewp@bigasterisk.com>
parents: 1062
diff changeset
227 def recentMotionStatements(self, motion):
981
d9bbbd8d86f6 arduinoNode: use -v for logging; support a PUT with subj+pred in query, obj in body
drewp <drewp@bigasterisk.com>
parents: 977
diff changeset
228 if not hasattr(self, 'lastMotionTime'):
d9bbbd8d86f6 arduinoNode: use -v for logging; support a PUT with subj+pred in query, obj in body
drewp <drewp@bigasterisk.com>
parents: 977
diff changeset
229 self.lastMotionTime = 0
d9bbbd8d86f6 arduinoNode: use -v for logging; support a PUT with subj+pred in query, obj in body
drewp <drewp@bigasterisk.com>
parents: 977
diff changeset
230 now = time.time()
d9bbbd8d86f6 arduinoNode: use -v for logging; support a PUT with subj+pred in query, obj in body
drewp <drewp@bigasterisk.com>
parents: 977
diff changeset
231 if motion:
d9bbbd8d86f6 arduinoNode: use -v for logging; support a PUT with subj+pred in query, obj in body
drewp <drewp@bigasterisk.com>
parents: 977
diff changeset
232 self.lastMotionTime = now
1073
054fccde9a49 'seesRecently30' in arduinoNode
drewp <drewp@bigasterisk.com>
parents: 1062
diff changeset
233 dt = now - self.lastMotionTime
054fccde9a49 'seesRecently30' in arduinoNode
drewp <drewp@bigasterisk.com>
parents: 1062
diff changeset
234 return [(self.uri, ROOM['seesRecently'],
054fccde9a49 'seesRecently30' in arduinoNode
drewp <drewp@bigasterisk.com>
parents: 1062
diff changeset
235 ROOM['motion'] if (dt < 60 * 10) else ROOM['noMotion']),
054fccde9a49 'seesRecently30' in arduinoNode
drewp <drewp@bigasterisk.com>
parents: 1062
diff changeset
236 (self.uri, ROOM['seesRecently30'],
054fccde9a49 'seesRecently30' in arduinoNode
drewp <drewp@bigasterisk.com>
parents: 1062
diff changeset
237 ROOM['motion'] if (dt < 30) else ROOM['noMotion'])]
981
d9bbbd8d86f6 arduinoNode: use -v for logging; support a PUT with subj+pred in query, obj in body
drewp <drewp@bigasterisk.com>
parents: 977
diff changeset
238
975
f3023410d875 polymer board debug page with working output widgets
drewp <drewp@bigasterisk.com>
parents: 974
diff changeset
239 def watchPrefixes(self):
981
d9bbbd8d86f6 arduinoNode: use -v for logging; support a PUT with subj+pred in query, obj in body
drewp <drewp@bigasterisk.com>
parents: 977
diff changeset
240 return [
d9bbbd8d86f6 arduinoNode: use -v for logging; support a PUT with subj+pred in query, obj in body
drewp <drewp@bigasterisk.com>
parents: 977
diff changeset
241 (self.uri, ROOM['sees']),
d9bbbd8d86f6 arduinoNode: use -v for logging; support a PUT with subj+pred in query, obj in body
drewp <drewp@bigasterisk.com>
parents: 977
diff changeset
242 (self.uri, ROOM['seesRecently']),
1073
054fccde9a49 'seesRecently30' in arduinoNode
drewp <drewp@bigasterisk.com>
parents: 1062
diff changeset
243 (self.uri, ROOM['seesRecently30']),
981
d9bbbd8d86f6 arduinoNode: use -v for logging; support a PUT with subj+pred in query, obj in body
drewp <drewp@bigasterisk.com>
parents: 977
diff changeset
244 ]
975
f3023410d875 polymer board debug page with working output widgets
drewp <drewp@bigasterisk.com>
parents: 974
diff changeset
245
971
fbe72d44f15a only recompile if the C code is new. redo Device class api. single temperature sensor is working
drewp <drewp@bigasterisk.com>
parents: 969
diff changeset
246 @register
1023
3e6fac8569cd multi-boards on one service, new devices, devices return their current
drewp <drewp@bigasterisk.com>
parents: 997
diff changeset
247 class PushbuttonInput(DeviceType):
3e6fac8569cd multi-boards on one service, new devices, devices return their current
drewp <drewp@bigasterisk.com>
parents: 997
diff changeset
248 """add a switch to ground; we'll turn on pullup"""
3e6fac8569cd multi-boards on one service, new devices, devices return their current
drewp <drewp@bigasterisk.com>
parents: 997
diff changeset
249 deviceType = ROOM['Pushbutton']
1062
6ab7a933c2a8 button :press oneshot
drewp <drewp@bigasterisk.com>
parents: 1056
diff changeset
250 def __init__(self, graph, uri, pinNumber):
6ab7a933c2a8 button :press oneshot
drewp <drewp@bigasterisk.com>
parents: 1056
diff changeset
251 DeviceType.__init__(self, graph, uri, pinNumber)
6ab7a933c2a8 button :press oneshot
drewp <drewp@bigasterisk.com>
parents: 1056
diff changeset
252 self.lastClosed = None
6ab7a933c2a8 button :press oneshot
drewp <drewp@bigasterisk.com>
parents: 1056
diff changeset
253
1023
3e6fac8569cd multi-boards on one service, new devices, devices return their current
drewp <drewp@bigasterisk.com>
parents: 997
diff changeset
254 def generateSetupCode(self):
3e6fac8569cd multi-boards on one service, new devices, devices return their current
drewp <drewp@bigasterisk.com>
parents: 997
diff changeset
255 return 'pinMode(%(pin)d, INPUT); digitalWrite(%(pin)d, HIGH);' % {
3e6fac8569cd multi-boards on one service, new devices, devices return their current
drewp <drewp@bigasterisk.com>
parents: 997
diff changeset
256 'pin': self.pinNumber,
3e6fac8569cd multi-boards on one service, new devices, devices return their current
drewp <drewp@bigasterisk.com>
parents: 997
diff changeset
257 }
3e6fac8569cd multi-boards on one service, new devices, devices return their current
drewp <drewp@bigasterisk.com>
parents: 997
diff changeset
258
3e6fac8569cd multi-boards on one service, new devices, devices return their current
drewp <drewp@bigasterisk.com>
parents: 997
diff changeset
259 def generatePollCode(self):
3e6fac8569cd multi-boards on one service, new devices, devices return their current
drewp <drewp@bigasterisk.com>
parents: 997
diff changeset
260 # note: pulldown means unpressed reads as a 1
3e6fac8569cd multi-boards on one service, new devices, devices return their current
drewp <drewp@bigasterisk.com>
parents: 997
diff changeset
261 return "Serial.write(digitalRead(%(pin)d) ? '0' : '1');" % {
3e6fac8569cd multi-boards on one service, new devices, devices return their current
drewp <drewp@bigasterisk.com>
parents: 997
diff changeset
262 'pin': self.pinNumber
3e6fac8569cd multi-boards on one service, new devices, devices return their current
drewp <drewp@bigasterisk.com>
parents: 997
diff changeset
263 }
3e6fac8569cd multi-boards on one service, new devices, devices return their current
drewp <drewp@bigasterisk.com>
parents: 997
diff changeset
264
3e6fac8569cd multi-boards on one service, new devices, devices return their current
drewp <drewp@bigasterisk.com>
parents: 997
diff changeset
265 def readFromPoll(self, read):
3e6fac8569cd multi-boards on one service, new devices, devices return their current
drewp <drewp@bigasterisk.com>
parents: 997
diff changeset
266 b = read(1)
3e6fac8569cd multi-boards on one service, new devices, devices return their current
drewp <drewp@bigasterisk.com>
parents: 997
diff changeset
267 if b not in '01':
3e6fac8569cd multi-boards on one service, new devices, devices return their current
drewp <drewp@bigasterisk.com>
parents: 997
diff changeset
268 raise ValueError('unexpected response %r' % b)
1062
6ab7a933c2a8 button :press oneshot
drewp <drewp@bigasterisk.com>
parents: 1056
diff changeset
269 closed = b == '0'
1023
3e6fac8569cd multi-boards on one service, new devices, devices return their current
drewp <drewp@bigasterisk.com>
parents: 997
diff changeset
270
1062
6ab7a933c2a8 button :press oneshot
drewp <drewp@bigasterisk.com>
parents: 1056
diff changeset
271 if self.lastClosed is not None and closed != self.lastClosed:
6ab7a933c2a8 button :press oneshot
drewp <drewp@bigasterisk.com>
parents: 1056
diff changeset
272 oneshot = [
6ab7a933c2a8 button :press oneshot
drewp <drewp@bigasterisk.com>
parents: 1056
diff changeset
273 (self.uri, ROOM['buttonState'],
6ab7a933c2a8 button :press oneshot
drewp <drewp@bigasterisk.com>
parents: 1056
diff changeset
274 ROOM['press'] if closed else ROOM['release']),
6ab7a933c2a8 button :press oneshot
drewp <drewp@bigasterisk.com>
parents: 1056
diff changeset
275 ]
6ab7a933c2a8 button :press oneshot
drewp <drewp@bigasterisk.com>
parents: 1056
diff changeset
276 else:
6ab7a933c2a8 button :press oneshot
drewp <drewp@bigasterisk.com>
parents: 1056
diff changeset
277 oneshot = []
6ab7a933c2a8 button :press oneshot
drewp <drewp@bigasterisk.com>
parents: 1056
diff changeset
278 self.lastClosed = closed
6ab7a933c2a8 button :press oneshot
drewp <drewp@bigasterisk.com>
parents: 1056
diff changeset
279
6ab7a933c2a8 button :press oneshot
drewp <drewp@bigasterisk.com>
parents: 1056
diff changeset
280 return {'latest': [
1023
3e6fac8569cd multi-boards on one service, new devices, devices return their current
drewp <drewp@bigasterisk.com>
parents: 997
diff changeset
281 (self.uri, ROOM['buttonState'],
1062
6ab7a933c2a8 button :press oneshot
drewp <drewp@bigasterisk.com>
parents: 1056
diff changeset
282 ROOM['pressed'] if closed else ROOM['notPressed']),
6ab7a933c2a8 button :press oneshot
drewp <drewp@bigasterisk.com>
parents: 1056
diff changeset
283 ],
6ab7a933c2a8 button :press oneshot
drewp <drewp@bigasterisk.com>
parents: 1056
diff changeset
284 'oneshot': oneshot}
1023
3e6fac8569cd multi-boards on one service, new devices, devices return their current
drewp <drewp@bigasterisk.com>
parents: 997
diff changeset
285
3e6fac8569cd multi-boards on one service, new devices, devices return their current
drewp <drewp@bigasterisk.com>
parents: 997
diff changeset
286 def watchPrefixes(self):
3e6fac8569cd multi-boards on one service, new devices, devices return their current
drewp <drewp@bigasterisk.com>
parents: 997
diff changeset
287 return [
3e6fac8569cd multi-boards on one service, new devices, devices return their current
drewp <drewp@bigasterisk.com>
parents: 997
diff changeset
288 (self.uri, ROOM['buttonState']),
3e6fac8569cd multi-boards on one service, new devices, devices return their current
drewp <drewp@bigasterisk.com>
parents: 997
diff changeset
289 ]
3e6fac8569cd multi-boards on one service, new devices, devices return their current
drewp <drewp@bigasterisk.com>
parents: 997
diff changeset
290
3e6fac8569cd multi-boards on one service, new devices, devices return their current
drewp <drewp@bigasterisk.com>
parents: 997
diff changeset
291 @register
971
fbe72d44f15a only recompile if the C code is new. redo Device class api. single temperature sensor is working
drewp <drewp@bigasterisk.com>
parents: 969
diff changeset
292 class OneWire(DeviceType):
975
f3023410d875 polymer board debug page with working output widgets
drewp <drewp@bigasterisk.com>
parents: 974
diff changeset
293 """
f3023410d875 polymer board debug page with working output widgets
drewp <drewp@bigasterisk.com>
parents: 974
diff changeset
294 A OW bus with temperature sensors (and maybe other devices, which
1023
3e6fac8569cd multi-boards on one service, new devices, devices return their current
drewp <drewp@bigasterisk.com>
parents: 997
diff changeset
295 are also to be handled under this object). We return graph
3e6fac8569cd multi-boards on one service, new devices, devices return their current
drewp <drewp@bigasterisk.com>
parents: 997
diff changeset
296 statements for all devices we find, even if we don't scan them, so
3e6fac8569cd multi-boards on one service, new devices, devices return their current
drewp <drewp@bigasterisk.com>
parents: 997
diff changeset
297 you can more easily add them to your config. Onewire search
3e6fac8569cd multi-boards on one service, new devices, devices return their current
drewp <drewp@bigasterisk.com>
parents: 997
diff changeset
298 happens only at device startup (not even program startup, yet).
3e6fac8569cd multi-boards on one service, new devices, devices return their current
drewp <drewp@bigasterisk.com>
parents: 997
diff changeset
299
3e6fac8569cd multi-boards on one service, new devices, devices return their current
drewp <drewp@bigasterisk.com>
parents: 997
diff changeset
300 self.uri is a resource representing the bus.
3e6fac8569cd multi-boards on one service, new devices, devices return their current
drewp <drewp@bigasterisk.com>
parents: 997
diff changeset
301
3e6fac8569cd multi-boards on one service, new devices, devices return their current
drewp <drewp@bigasterisk.com>
parents: 997
diff changeset
302 DS18S20 pin 1: ground, pin 2: data and pull-up with 4.7k.
975
f3023410d875 polymer board debug page with working output widgets
drewp <drewp@bigasterisk.com>
parents: 974
diff changeset
303 """
971
fbe72d44f15a only recompile if the C code is new. redo Device class api. single temperature sensor is working
drewp <drewp@bigasterisk.com>
parents: 969
diff changeset
304 deviceType = ROOM['OneWire']
1110
6ee834a6f970 influx output for arduino, update web lib path
drewp <drewp@bigasterisk.com>
parents: 1073
diff changeset
305 pollPeriod = 2
1023
3e6fac8569cd multi-boards on one service, new devices, devices return their current
drewp <drewp@bigasterisk.com>
parents: 997
diff changeset
306 def hostStateInit(self):
3e6fac8569cd multi-boards on one service, new devices, devices return their current
drewp <drewp@bigasterisk.com>
parents: 997
diff changeset
307 # eliminate this as part of removing watchPrefixes
3e6fac8569cd multi-boards on one service, new devices, devices return their current
drewp <drewp@bigasterisk.com>
parents: 997
diff changeset
308 self._knownTempSubjects = set()
971
fbe72d44f15a only recompile if the C code is new. redo Device class api. single temperature sensor is working
drewp <drewp@bigasterisk.com>
parents: 969
diff changeset
309 def generateIncludes(self):
fbe72d44f15a only recompile if the C code is new. redo Device class api. single temperature sensor is working
drewp <drewp@bigasterisk.com>
parents: 969
diff changeset
310 return ['OneWire.h', 'DallasTemperature.h']
fbe72d44f15a only recompile if the C code is new. redo Device class api. single temperature sensor is working
drewp <drewp@bigasterisk.com>
parents: 969
diff changeset
311
fbe72d44f15a only recompile if the C code is new. redo Device class api. single temperature sensor is working
drewp <drewp@bigasterisk.com>
parents: 969
diff changeset
312 def generateArduinoLibs(self):
fbe72d44f15a only recompile if the C code is new. redo Device class api. single temperature sensor is working
drewp <drewp@bigasterisk.com>
parents: 969
diff changeset
313 return ['OneWire', 'DallasTemperature']
fbe72d44f15a only recompile if the C code is new. redo Device class api. single temperature sensor is working
drewp <drewp@bigasterisk.com>
parents: 969
diff changeset
314
fbe72d44f15a only recompile if the C code is new. redo Device class api. single temperature sensor is working
drewp <drewp@bigasterisk.com>
parents: 969
diff changeset
315 def generateGlobalCode(self):
fbe72d44f15a only recompile if the C code is new. redo Device class api. single temperature sensor is working
drewp <drewp@bigasterisk.com>
parents: 969
diff changeset
316 # not yet isolated to support multiple OW buses
fbe72d44f15a only recompile if the C code is new. redo Device class api. single temperature sensor is working
drewp <drewp@bigasterisk.com>
parents: 969
diff changeset
317 return '''
fbe72d44f15a only recompile if the C code is new. redo Device class api. single temperature sensor is working
drewp <drewp@bigasterisk.com>
parents: 969
diff changeset
318 OneWire oneWire(%(pinNumber)s);
fbe72d44f15a only recompile if the C code is new. redo Device class api. single temperature sensor is working
drewp <drewp@bigasterisk.com>
parents: 969
diff changeset
319 DallasTemperature sensors(&oneWire);
1023
3e6fac8569cd multi-boards on one service, new devices, devices return their current
drewp <drewp@bigasterisk.com>
parents: 997
diff changeset
320 #define MAX_DEVICES 8
3e6fac8569cd multi-boards on one service, new devices, devices return their current
drewp <drewp@bigasterisk.com>
parents: 997
diff changeset
321 DeviceAddress tempSensorAddress[MAX_DEVICES];
971
fbe72d44f15a only recompile if the C code is new. redo Device class api. single temperature sensor is working
drewp <drewp@bigasterisk.com>
parents: 969
diff changeset
322
1023
3e6fac8569cd multi-boards on one service, new devices, devices return their current
drewp <drewp@bigasterisk.com>
parents: 997
diff changeset
323 void initSensors() {
971
fbe72d44f15a only recompile if the C code is new. redo Device class api. single temperature sensor is working
drewp <drewp@bigasterisk.com>
parents: 969
diff changeset
324 sensors.begin();
1023
3e6fac8569cd multi-boards on one service, new devices, devices return their current
drewp <drewp@bigasterisk.com>
parents: 997
diff changeset
325 sensors.setResolution(12);
991
c6989dcf1f4f temp sensor try to work with idle loop (but there are still stutters)
drewp <drewp@bigasterisk.com>
parents: 990
diff changeset
326 sensors.setWaitForConversion(false);
1023
3e6fac8569cd multi-boards on one service, new devices, devices return their current
drewp <drewp@bigasterisk.com>
parents: 997
diff changeset
327 for (uint8_t i=0; i < sensors.getDeviceCount(); ++i) {
3e6fac8569cd multi-boards on one service, new devices, devices return their current
drewp <drewp@bigasterisk.com>
parents: 997
diff changeset
328 sensors.getAddress(tempSensorAddress[i], i);
3e6fac8569cd multi-boards on one service, new devices, devices return their current
drewp <drewp@bigasterisk.com>
parents: 997
diff changeset
329 }
971
fbe72d44f15a only recompile if the C code is new. redo Device class api. single temperature sensor is working
drewp <drewp@bigasterisk.com>
parents: 969
diff changeset
330 }
974
f707210c13bd new /output to post statements which devices can handle. led and lcd output working
drewp <drewp@bigasterisk.com>
parents: 971
diff changeset
331 ''' % dict(pinNumber=self.pinNumber)
991
c6989dcf1f4f temp sensor try to work with idle loop (but there are still stutters)
drewp <drewp@bigasterisk.com>
parents: 990
diff changeset
332
c6989dcf1f4f temp sensor try to work with idle loop (but there are still stutters)
drewp <drewp@bigasterisk.com>
parents: 990
diff changeset
333 def generateSetupCode(self):
c6989dcf1f4f temp sensor try to work with idle loop (but there are still stutters)
drewp <drewp@bigasterisk.com>
parents: 990
diff changeset
334 return 'initSensors();'
c6989dcf1f4f temp sensor try to work with idle loop (but there are still stutters)
drewp <drewp@bigasterisk.com>
parents: 990
diff changeset
335
971
fbe72d44f15a only recompile if the C code is new. redo Device class api. single temperature sensor is working
drewp <drewp@bigasterisk.com>
parents: 969
diff changeset
336 def generatePollCode(self):
fbe72d44f15a only recompile if the C code is new. redo Device class api. single temperature sensor is working
drewp <drewp@bigasterisk.com>
parents: 969
diff changeset
337 return r'''
fbe72d44f15a only recompile if the C code is new. redo Device class api. single temperature sensor is working
drewp <drewp@bigasterisk.com>
parents: 969
diff changeset
338 sensors.requestTemperatures();
1023
3e6fac8569cd multi-boards on one service, new devices, devices return their current
drewp <drewp@bigasterisk.com>
parents: 997
diff changeset
339
3e6fac8569cd multi-boards on one service, new devices, devices return their current
drewp <drewp@bigasterisk.com>
parents: 997
diff changeset
340 // If we need frequent idle calls or fast polling again, this needs
3e6fac8569cd multi-boards on one service, new devices, devices return their current
drewp <drewp@bigasterisk.com>
parents: 997
diff changeset
341 // to be changed, but it makes temp sensing work. I had a note that I
3e6fac8569cd multi-boards on one service, new devices, devices return their current
drewp <drewp@bigasterisk.com>
parents: 997
diff changeset
342 // could just wait until the next cycle to get my reading, but that's
3e6fac8569cd multi-boards on one service, new devices, devices return their current
drewp <drewp@bigasterisk.com>
parents: 997
diff changeset
343 // not working today, maybe because of a changed poll rate.
3e6fac8569cd multi-boards on one service, new devices, devices return their current
drewp <drewp@bigasterisk.com>
parents: 997
diff changeset
344 sensors.setWaitForConversion(true); // ~100ms
3e6fac8569cd multi-boards on one service, new devices, devices return their current
drewp <drewp@bigasterisk.com>
parents: 997
diff changeset
345
3e6fac8569cd multi-boards on one service, new devices, devices return their current
drewp <drewp@bigasterisk.com>
parents: 997
diff changeset
346 Serial.write((uint8_t)sensors.getDeviceCount());
3e6fac8569cd multi-boards on one service, new devices, devices return their current
drewp <drewp@bigasterisk.com>
parents: 997
diff changeset
347 for (uint8_t i=0; i < sensors.getDeviceCount(); ++i) {
3e6fac8569cd multi-boards on one service, new devices, devices return their current
drewp <drewp@bigasterisk.com>
parents: 997
diff changeset
348 float newTemp = sensors.getTempF(tempSensorAddress[i]);
3e6fac8569cd multi-boards on one service, new devices, devices return their current
drewp <drewp@bigasterisk.com>
parents: 997
diff changeset
349
3e6fac8569cd multi-boards on one service, new devices, devices return their current
drewp <drewp@bigasterisk.com>
parents: 997
diff changeset
350 Serial.write(tempSensorAddress[i], 8);
3e6fac8569cd multi-boards on one service, new devices, devices return their current
drewp <drewp@bigasterisk.com>
parents: 997
diff changeset
351 Serial.write((uint8_t*)(&newTemp), 4);
971
fbe72d44f15a only recompile if the C code is new. redo Device class api. single temperature sensor is working
drewp <drewp@bigasterisk.com>
parents: 969
diff changeset
352 }
fbe72d44f15a only recompile if the C code is new. redo Device class api. single temperature sensor is working
drewp <drewp@bigasterisk.com>
parents: 969
diff changeset
353 '''
fbe72d44f15a only recompile if the C code is new. redo Device class api. single temperature sensor is working
drewp <drewp@bigasterisk.com>
parents: 969
diff changeset
354
fbe72d44f15a only recompile if the C code is new. redo Device class api. single temperature sensor is working
drewp <drewp@bigasterisk.com>
parents: 969
diff changeset
355 def readFromPoll(self, read):
1023
3e6fac8569cd multi-boards on one service, new devices, devices return their current
drewp <drewp@bigasterisk.com>
parents: 997
diff changeset
356 t1 = time.time()
3e6fac8569cd multi-boards on one service, new devices, devices return their current
drewp <drewp@bigasterisk.com>
parents: 997
diff changeset
357 count = ord(read(1))
3e6fac8569cd multi-boards on one service, new devices, devices return their current
drewp <drewp@bigasterisk.com>
parents: 997
diff changeset
358 stmts = []
3e6fac8569cd multi-boards on one service, new devices, devices return their current
drewp <drewp@bigasterisk.com>
parents: 997
diff changeset
359 for i in range(count):
3e6fac8569cd multi-boards on one service, new devices, devices return their current
drewp <drewp@bigasterisk.com>
parents: 997
diff changeset
360 addr = struct.unpack('>Q', read(8))[0]
3e6fac8569cd multi-boards on one service, new devices, devices return their current
drewp <drewp@bigasterisk.com>
parents: 997
diff changeset
361 tempF = struct.unpack('<f', read(4))[0]
3e6fac8569cd multi-boards on one service, new devices, devices return their current
drewp <drewp@bigasterisk.com>
parents: 997
diff changeset
362 sensorUri = URIRef(os.path.join(self.uri, 'dev-%s' % hex(addr)[2:]))
1110
6ee834a6f970 influx output for arduino, update web lib path
drewp <drewp@bigasterisk.com>
parents: 1073
diff changeset
363 if tempF > 180:
6ee834a6f970 influx output for arduino, update web lib path
drewp <drewp@bigasterisk.com>
parents: 1073
diff changeset
364 stmts.extend([
6ee834a6f970 influx output for arduino, update web lib path
drewp <drewp@bigasterisk.com>
parents: 1073
diff changeset
365 (self.uri, ROOM['connectedTo'], sensorUri),
6ee834a6f970 influx output for arduino, update web lib path
drewp <drewp@bigasterisk.com>
parents: 1073
diff changeset
366 (sensorUri, RDF.type, ROOM['FailingTemperatureReading']),
6ee834a6f970 influx output for arduino, update web lib path
drewp <drewp@bigasterisk.com>
parents: 1073
diff changeset
367 ])
6ee834a6f970 influx output for arduino, update web lib path
drewp <drewp@bigasterisk.com>
parents: 1073
diff changeset
368 continue
1023
3e6fac8569cd multi-boards on one service, new devices, devices return their current
drewp <drewp@bigasterisk.com>
parents: 997
diff changeset
369 stmts.extend([
3e6fac8569cd multi-boards on one service, new devices, devices return their current
drewp <drewp@bigasterisk.com>
parents: 997
diff changeset
370 (self.uri, ROOM['connectedTo'], sensorUri),
1035
f01d9892ed79 update arduinoNode to support streamed graph output
drewp <drewp@bigasterisk.com>
parents: 1023
diff changeset
371 # rounding may be working around a bug where the
f01d9892ed79 update arduinoNode to support streamed graph output
drewp <drewp@bigasterisk.com>
parents: 1023
diff changeset
372 # Literal gets two representations (at different
f01d9892ed79 update arduinoNode to support streamed graph output
drewp <drewp@bigasterisk.com>
parents: 1023
diff changeset
373 # roundings), and this makes an extra value linger on
f01d9892ed79 update arduinoNode to support streamed graph output
drewp <drewp@bigasterisk.com>
parents: 1023
diff changeset
374 # the client.
f01d9892ed79 update arduinoNode to support streamed graph output
drewp <drewp@bigasterisk.com>
parents: 1023
diff changeset
375 (sensorUri, ROOM['temperatureF'], Literal(round(tempF, 2)))])
1023
3e6fac8569cd multi-boards on one service, new devices, devices return their current
drewp <drewp@bigasterisk.com>
parents: 997
diff changeset
376 self._knownTempSubjects.add(sensorUri)
3e6fac8569cd multi-boards on one service, new devices, devices return their current
drewp <drewp@bigasterisk.com>
parents: 997
diff changeset
377
3e6fac8569cd multi-boards on one service, new devices, devices return their current
drewp <drewp@bigasterisk.com>
parents: 997
diff changeset
378 log.debug("read temp in %.1fms" % ((time.time() - t1) * 1000))
3e6fac8569cd multi-boards on one service, new devices, devices return their current
drewp <drewp@bigasterisk.com>
parents: 997
diff changeset
379 return stmts
971
fbe72d44f15a only recompile if the C code is new. redo Device class api. single temperature sensor is working
drewp <drewp@bigasterisk.com>
parents: 969
diff changeset
380
975
f3023410d875 polymer board debug page with working output widgets
drewp <drewp@bigasterisk.com>
parents: 974
diff changeset
381 def watchPrefixes(self):
f3023410d875 polymer board debug page with working output widgets
drewp <drewp@bigasterisk.com>
parents: 974
diff changeset
382 # these uris will become dynamic! see note on watchPrefixes
f3023410d875 polymer board debug page with working output widgets
drewp <drewp@bigasterisk.com>
parents: 974
diff changeset
383 # about eliminating it.
1023
3e6fac8569cd multi-boards on one service, new devices, devices return their current
drewp <drewp@bigasterisk.com>
parents: 997
diff changeset
384 return [(uri, ROOM['temperatureF']) for uri in self._knownTempSubjects]
975
f3023410d875 polymer board debug page with working output widgets
drewp <drewp@bigasterisk.com>
parents: 974
diff changeset
385
974
f707210c13bd new /output to post statements which devices can handle. led and lcd output working
drewp <drewp@bigasterisk.com>
parents: 971
diff changeset
386 def byteFromFloat(f):
f707210c13bd new /output to post statements which devices can handle. led and lcd output working
drewp <drewp@bigasterisk.com>
parents: 971
diff changeset
387 return chr(int(min(255, max(0, f * 255))))
997
b24885725f59 support for pwm board
drewp <drewp@bigasterisk.com>
parents: 991
diff changeset
388
974
f707210c13bd new /output to post statements which devices can handle. led and lcd output working
drewp <drewp@bigasterisk.com>
parents: 971
diff changeset
389 @register
f707210c13bd new /output to post statements which devices can handle. led and lcd output working
drewp <drewp@bigasterisk.com>
parents: 971
diff changeset
390 class LedOutput(DeviceType):
f707210c13bd new /output to post statements which devices can handle. led and lcd output working
drewp <drewp@bigasterisk.com>
parents: 971
diff changeset
391 deviceType = ROOM['LedOutput']
1023
3e6fac8569cd multi-boards on one service, new devices, devices return their current
drewp <drewp@bigasterisk.com>
parents: 997
diff changeset
392 def hostStateInit(self):
3e6fac8569cd multi-boards on one service, new devices, devices return their current
drewp <drewp@bigasterisk.com>
parents: 997
diff changeset
393 self.value = 0
3e6fac8569cd multi-boards on one service, new devices, devices return their current
drewp <drewp@bigasterisk.com>
parents: 997
diff changeset
394
974
f707210c13bd new /output to post statements which devices can handle. led and lcd output working
drewp <drewp@bigasterisk.com>
parents: 971
diff changeset
395 def generateSetupCode(self):
f707210c13bd new /output to post statements which devices can handle. led and lcd output working
drewp <drewp@bigasterisk.com>
parents: 971
diff changeset
396 return 'pinMode(%(pin)d, OUTPUT); digitalWrite(%(pin)d, LOW);' % {
f707210c13bd new /output to post statements which devices can handle. led and lcd output working
drewp <drewp@bigasterisk.com>
parents: 971
diff changeset
397 'pin': self.pinNumber,
f707210c13bd new /output to post statements which devices can handle. led and lcd output working
drewp <drewp@bigasterisk.com>
parents: 971
diff changeset
398 }
f707210c13bd new /output to post statements which devices can handle. led and lcd output working
drewp <drewp@bigasterisk.com>
parents: 971
diff changeset
399
f707210c13bd new /output to post statements which devices can handle. led and lcd output working
drewp <drewp@bigasterisk.com>
parents: 971
diff changeset
400 def outputPatterns(self):
f707210c13bd new /output to post statements which devices can handle. led and lcd output working
drewp <drewp@bigasterisk.com>
parents: 971
diff changeset
401 return [(self.uri, ROOM['brightness'], None)]
f707210c13bd new /output to post statements which devices can handle. led and lcd output working
drewp <drewp@bigasterisk.com>
parents: 971
diff changeset
402
f707210c13bd new /output to post statements which devices can handle. led and lcd output working
drewp <drewp@bigasterisk.com>
parents: 971
diff changeset
403 def sendOutput(self, statements, write, read):
f707210c13bd new /output to post statements which devices can handle. led and lcd output working
drewp <drewp@bigasterisk.com>
parents: 971
diff changeset
404 assert len(statements) == 1
f707210c13bd new /output to post statements which devices can handle. led and lcd output working
drewp <drewp@bigasterisk.com>
parents: 971
diff changeset
405 assert statements[0][:2] == (self.uri, ROOM['brightness'])
1023
3e6fac8569cd multi-boards on one service, new devices, devices return their current
drewp <drewp@bigasterisk.com>
parents: 997
diff changeset
406 self.value = float(statements[0][2])
977
03cfee8f9154 obey ActiveLowOutput correctly
drewp <drewp@bigasterisk.com>
parents: 975
diff changeset
407 if (self.uri, RDF.type, ROOM['ActiveLowOutput']) in self.graph:
1023
3e6fac8569cd multi-boards on one service, new devices, devices return their current
drewp <drewp@bigasterisk.com>
parents: 997
diff changeset
408 self.value = 1 - self.value
3e6fac8569cd multi-boards on one service, new devices, devices return their current
drewp <drewp@bigasterisk.com>
parents: 997
diff changeset
409 write(byteFromFloat(self.value))
3e6fac8569cd multi-boards on one service, new devices, devices return their current
drewp <drewp@bigasterisk.com>
parents: 997
diff changeset
410
3e6fac8569cd multi-boards on one service, new devices, devices return their current
drewp <drewp@bigasterisk.com>
parents: 997
diff changeset
411 def hostStatements(self):
3e6fac8569cd multi-boards on one service, new devices, devices return their current
drewp <drewp@bigasterisk.com>
parents: 997
diff changeset
412 return [(self.uri, ROOM['brightness'], Literal(self.value))]
974
f707210c13bd new /output to post statements which devices can handle. led and lcd output working
drewp <drewp@bigasterisk.com>
parents: 971
diff changeset
413
f707210c13bd new /output to post statements which devices can handle. led and lcd output working
drewp <drewp@bigasterisk.com>
parents: 971
diff changeset
414 def generateActionCode(self):
f707210c13bd new /output to post statements which devices can handle. led and lcd output working
drewp <drewp@bigasterisk.com>
parents: 971
diff changeset
415 return r'''
f707210c13bd new /output to post statements which devices can handle. led and lcd output working
drewp <drewp@bigasterisk.com>
parents: 971
diff changeset
416 while(Serial.available() < 1) NULL;
f707210c13bd new /output to post statements which devices can handle. led and lcd output working
drewp <drewp@bigasterisk.com>
parents: 971
diff changeset
417 analogWrite(%(pin)d, Serial.read());
f707210c13bd new /output to post statements which devices can handle. led and lcd output working
drewp <drewp@bigasterisk.com>
parents: 971
diff changeset
418 ''' % dict(pin=self.pinNumber)
975
f3023410d875 polymer board debug page with working output widgets
drewp <drewp@bigasterisk.com>
parents: 974
diff changeset
419
f3023410d875 polymer board debug page with working output widgets
drewp <drewp@bigasterisk.com>
parents: 974
diff changeset
420 def outputWidgets(self):
f3023410d875 polymer board debug page with working output widgets
drewp <drewp@bigasterisk.com>
parents: 974
diff changeset
421 return [{
f3023410d875 polymer board debug page with working output widgets
drewp <drewp@bigasterisk.com>
parents: 974
diff changeset
422 'element': 'output-slider',
f3023410d875 polymer board debug page with working output widgets
drewp <drewp@bigasterisk.com>
parents: 974
diff changeset
423 'min': 0,
f3023410d875 polymer board debug page with working output widgets
drewp <drewp@bigasterisk.com>
parents: 974
diff changeset
424 'max': 1,
f3023410d875 polymer board debug page with working output widgets
drewp <drewp@bigasterisk.com>
parents: 974
diff changeset
425 'step': 1 / 255,
f3023410d875 polymer board debug page with working output widgets
drewp <drewp@bigasterisk.com>
parents: 974
diff changeset
426 'subj': self.uri,
f3023410d875 polymer board debug page with working output widgets
drewp <drewp@bigasterisk.com>
parents: 974
diff changeset
427 'pred': ROOM['brightness'],
f3023410d875 polymer board debug page with working output widgets
drewp <drewp@bigasterisk.com>
parents: 974
diff changeset
428 }]
f3023410d875 polymer board debug page with working output widgets
drewp <drewp@bigasterisk.com>
parents: 974
diff changeset
429
f3023410d875 polymer board debug page with working output widgets
drewp <drewp@bigasterisk.com>
parents: 974
diff changeset
430 @register
f3023410d875 polymer board debug page with working output widgets
drewp <drewp@bigasterisk.com>
parents: 974
diff changeset
431 class DigitalOutput(DeviceType):
f3023410d875 polymer board debug page with working output widgets
drewp <drewp@bigasterisk.com>
parents: 974
diff changeset
432 deviceType = ROOM['DigitalOutput']
1023
3e6fac8569cd multi-boards on one service, new devices, devices return their current
drewp <drewp@bigasterisk.com>
parents: 997
diff changeset
433 def hostStateInit(self):
3e6fac8569cd multi-boards on one service, new devices, devices return their current
drewp <drewp@bigasterisk.com>
parents: 997
diff changeset
434 self.value = 0
3e6fac8569cd multi-boards on one service, new devices, devices return their current
drewp <drewp@bigasterisk.com>
parents: 997
diff changeset
435
975
f3023410d875 polymer board debug page with working output widgets
drewp <drewp@bigasterisk.com>
parents: 974
diff changeset
436 def generateSetupCode(self):
f3023410d875 polymer board debug page with working output widgets
drewp <drewp@bigasterisk.com>
parents: 974
diff changeset
437 return 'pinMode(%(pin)d, OUTPUT); digitalWrite(%(pin)d, LOW);' % {
f3023410d875 polymer board debug page with working output widgets
drewp <drewp@bigasterisk.com>
parents: 974
diff changeset
438 'pin': self.pinNumber,
f3023410d875 polymer board debug page with working output widgets
drewp <drewp@bigasterisk.com>
parents: 974
diff changeset
439 }
f3023410d875 polymer board debug page with working output widgets
drewp <drewp@bigasterisk.com>
parents: 974
diff changeset
440
f3023410d875 polymer board debug page with working output widgets
drewp <drewp@bigasterisk.com>
parents: 974
diff changeset
441 def outputPatterns(self):
f3023410d875 polymer board debug page with working output widgets
drewp <drewp@bigasterisk.com>
parents: 974
diff changeset
442 return [(self.uri, ROOM['level'], None)]
f3023410d875 polymer board debug page with working output widgets
drewp <drewp@bigasterisk.com>
parents: 974
diff changeset
443
f3023410d875 polymer board debug page with working output widgets
drewp <drewp@bigasterisk.com>
parents: 974
diff changeset
444 def sendOutput(self, statements, write, read):
f3023410d875 polymer board debug page with working output widgets
drewp <drewp@bigasterisk.com>
parents: 974
diff changeset
445 assert len(statements) == 1
f3023410d875 polymer board debug page with working output widgets
drewp <drewp@bigasterisk.com>
parents: 974
diff changeset
446 assert statements[0][:2] == (self.uri, ROOM['level'])
1023
3e6fac8569cd multi-boards on one service, new devices, devices return their current
drewp <drewp@bigasterisk.com>
parents: 997
diff changeset
447 self.value = {"high": 1, "low": 0}[str(statements[0][2])]
3e6fac8569cd multi-boards on one service, new devices, devices return their current
drewp <drewp@bigasterisk.com>
parents: 997
diff changeset
448 write(chr(self.value))
3e6fac8569cd multi-boards on one service, new devices, devices return their current
drewp <drewp@bigasterisk.com>
parents: 997
diff changeset
449
3e6fac8569cd multi-boards on one service, new devices, devices return their current
drewp <drewp@bigasterisk.com>
parents: 997
diff changeset
450 def hostStatements(self):
3e6fac8569cd multi-boards on one service, new devices, devices return their current
drewp <drewp@bigasterisk.com>
parents: 997
diff changeset
451 return [(self.uri, ROOM['level'],
3e6fac8569cd multi-boards on one service, new devices, devices return their current
drewp <drewp@bigasterisk.com>
parents: 997
diff changeset
452 Literal('high' if self.value else 'low'))]
975
f3023410d875 polymer board debug page with working output widgets
drewp <drewp@bigasterisk.com>
parents: 974
diff changeset
453
f3023410d875 polymer board debug page with working output widgets
drewp <drewp@bigasterisk.com>
parents: 974
diff changeset
454 def generateActionCode(self):
f3023410d875 polymer board debug page with working output widgets
drewp <drewp@bigasterisk.com>
parents: 974
diff changeset
455 return r'''
f3023410d875 polymer board debug page with working output widgets
drewp <drewp@bigasterisk.com>
parents: 974
diff changeset
456 while(Serial.available() < 1) NULL;
f3023410d875 polymer board debug page with working output widgets
drewp <drewp@bigasterisk.com>
parents: 974
diff changeset
457 digitalWrite(%(pin)d, Serial.read());
f3023410d875 polymer board debug page with working output widgets
drewp <drewp@bigasterisk.com>
parents: 974
diff changeset
458 ''' % dict(pin=self.pinNumber)
f3023410d875 polymer board debug page with working output widgets
drewp <drewp@bigasterisk.com>
parents: 974
diff changeset
459
f3023410d875 polymer board debug page with working output widgets
drewp <drewp@bigasterisk.com>
parents: 974
diff changeset
460 def outputWidgets(self):
f3023410d875 polymer board debug page with working output widgets
drewp <drewp@bigasterisk.com>
parents: 974
diff changeset
461 return [{
f3023410d875 polymer board debug page with working output widgets
drewp <drewp@bigasterisk.com>
parents: 974
diff changeset
462 'element': 'output-switch',
f3023410d875 polymer board debug page with working output widgets
drewp <drewp@bigasterisk.com>
parents: 974
diff changeset
463 'subj': self.uri,
f3023410d875 polymer board debug page with working output widgets
drewp <drewp@bigasterisk.com>
parents: 974
diff changeset
464 'pred': ROOM['level'],
f3023410d875 polymer board debug page with working output widgets
drewp <drewp@bigasterisk.com>
parents: 974
diff changeset
465 }]
997
b24885725f59 support for pwm board
drewp <drewp@bigasterisk.com>
parents: 991
diff changeset
466
1023
3e6fac8569cd multi-boards on one service, new devices, devices return their current
drewp <drewp@bigasterisk.com>
parents: 997
diff changeset
467
997
b24885725f59 support for pwm board
drewp <drewp@bigasterisk.com>
parents: 991
diff changeset
468 @register
b24885725f59 support for pwm board
drewp <drewp@bigasterisk.com>
parents: 991
diff changeset
469 class PwmBoard(DeviceType):
b24885725f59 support for pwm board
drewp <drewp@bigasterisk.com>
parents: 991
diff changeset
470 deviceType = ROOM['PwmBoard']
b24885725f59 support for pwm board
drewp <drewp@bigasterisk.com>
parents: 991
diff changeset
471 @classmethod
b24885725f59 support for pwm board
drewp <drewp@bigasterisk.com>
parents: 991
diff changeset
472 def findInstances(cls, graph, board):
b24885725f59 support for pwm board
drewp <drewp@bigasterisk.com>
parents: 991
diff changeset
473 for row in graph.query("""SELECT DISTINCT ?dev ?sda ?scl WHERE {
b24885725f59 support for pwm board
drewp <drewp@bigasterisk.com>
parents: 991
diff changeset
474 ?board :hasPin ?sdaPin .
b24885725f59 support for pwm board
drewp <drewp@bigasterisk.com>
parents: 991
diff changeset
475 ?board :hasPin ?sclPin .
b24885725f59 support for pwm board
drewp <drewp@bigasterisk.com>
parents: 991
diff changeset
476 ?sdaPin :pinNumber ?sda; :connectedTo ?sdaConn .
b24885725f59 support for pwm board
drewp <drewp@bigasterisk.com>
parents: 991
diff changeset
477 ?sclPin :pinNumber ?scl; :connectedTo ?sclConn .
b24885725f59 support for pwm board
drewp <drewp@bigasterisk.com>
parents: 991
diff changeset
478 ?dev a :PwmBoard;
b24885725f59 support for pwm board
drewp <drewp@bigasterisk.com>
parents: 991
diff changeset
479 :scl ?sclConn;
b24885725f59 support for pwm board
drewp <drewp@bigasterisk.com>
parents: 991
diff changeset
480 :sda ?sdaConn .
b24885725f59 support for pwm board
drewp <drewp@bigasterisk.com>
parents: 991
diff changeset
481 }""", initBindings=dict(board=board), initNs={'': ROOM}):
b24885725f59 support for pwm board
drewp <drewp@bigasterisk.com>
parents: 991
diff changeset
482 if (row.sda, row.scl) != (Literal('a4'), Literal('a5')):
b24885725f59 support for pwm board
drewp <drewp@bigasterisk.com>
parents: 991
diff changeset
483 raise NotImplementedError(row)
b24885725f59 support for pwm board
drewp <drewp@bigasterisk.com>
parents: 991
diff changeset
484 outs = {}
b24885725f59 support for pwm board
drewp <drewp@bigasterisk.com>
parents: 991
diff changeset
485 for out in graph.query("""SELECT DISTINCT ?area ?chan WHERE {
b24885725f59 support for pwm board
drewp <drewp@bigasterisk.com>
parents: 991
diff changeset
486 ?dev :output [:area ?area; :channel ?chan] .
b24885725f59 support for pwm board
drewp <drewp@bigasterisk.com>
parents: 991
diff changeset
487 }""", initBindings=dict(dev=row.dev), initNs={'': ROOM}):
b24885725f59 support for pwm board
drewp <drewp@bigasterisk.com>
parents: 991
diff changeset
488 outs[out.area] = out.chan.toPython()
b24885725f59 support for pwm board
drewp <drewp@bigasterisk.com>
parents: 991
diff changeset
489 yield cls(graph, row.dev, outs=outs)
974
f707210c13bd new /output to post statements which devices can handle. led and lcd output working
drewp <drewp@bigasterisk.com>
parents: 971
diff changeset
490
997
b24885725f59 support for pwm board
drewp <drewp@bigasterisk.com>
parents: 991
diff changeset
491 def __init__(self, graph, dev, outs):
b24885725f59 support for pwm board
drewp <drewp@bigasterisk.com>
parents: 991
diff changeset
492 self.codeVals = {'pwm': 'pwm%s' % (hash(str(dev)) % 99999)}
b24885725f59 support for pwm board
drewp <drewp@bigasterisk.com>
parents: 991
diff changeset
493 self.outs = outs
1023
3e6fac8569cd multi-boards on one service, new devices, devices return their current
drewp <drewp@bigasterisk.com>
parents: 997
diff changeset
494 super(PwmBoard, self).__init__(graph, dev, pinNumber=None)
997
b24885725f59 support for pwm board
drewp <drewp@bigasterisk.com>
parents: 991
diff changeset
495
1023
3e6fac8569cd multi-boards on one service, new devices, devices return their current
drewp <drewp@bigasterisk.com>
parents: 997
diff changeset
496 def hostStateInit(self):
3e6fac8569cd multi-boards on one service, new devices, devices return their current
drewp <drewp@bigasterisk.com>
parents: 997
diff changeset
497 self.values = {uri: 0 for uri in self.outs.keys()} # uri: brightness
3e6fac8569cd multi-boards on one service, new devices, devices return their current
drewp <drewp@bigasterisk.com>
parents: 997
diff changeset
498
3e6fac8569cd multi-boards on one service, new devices, devices return their current
drewp <drewp@bigasterisk.com>
parents: 997
diff changeset
499 def hostStatements(self):
3e6fac8569cd multi-boards on one service, new devices, devices return their current
drewp <drewp@bigasterisk.com>
parents: 997
diff changeset
500 return [(uri, ROOM['brightness'], Literal(b))
3e6fac8569cd multi-boards on one service, new devices, devices return their current
drewp <drewp@bigasterisk.com>
parents: 997
diff changeset
501 for uri, b in self.values.items()]
3e6fac8569cd multi-boards on one service, new devices, devices return their current
drewp <drewp@bigasterisk.com>
parents: 997
diff changeset
502
997
b24885725f59 support for pwm board
drewp <drewp@bigasterisk.com>
parents: 991
diff changeset
503 def generateIncludes(self):
b24885725f59 support for pwm board
drewp <drewp@bigasterisk.com>
parents: 991
diff changeset
504 return ['Wire.h', 'Adafruit_PWMServoDriver.h']
b24885725f59 support for pwm board
drewp <drewp@bigasterisk.com>
parents: 991
diff changeset
505
b24885725f59 support for pwm board
drewp <drewp@bigasterisk.com>
parents: 991
diff changeset
506 def generateArduinoLibs(self):
b24885725f59 support for pwm board
drewp <drewp@bigasterisk.com>
parents: 991
diff changeset
507 return ['Wire', 'Adafruit-PWM-Servo-Driver-Library']
b24885725f59 support for pwm board
drewp <drewp@bigasterisk.com>
parents: 991
diff changeset
508
b24885725f59 support for pwm board
drewp <drewp@bigasterisk.com>
parents: 991
diff changeset
509 def generateGlobalCode(self):
b24885725f59 support for pwm board
drewp <drewp@bigasterisk.com>
parents: 991
diff changeset
510 return r'''
b24885725f59 support for pwm board
drewp <drewp@bigasterisk.com>
parents: 991
diff changeset
511 Adafruit_PWMServoDriver %(pwm)s = Adafruit_PWMServoDriver(0x40);
b24885725f59 support for pwm board
drewp <drewp@bigasterisk.com>
parents: 991
diff changeset
512 ''' % self.codeVals
b24885725f59 support for pwm board
drewp <drewp@bigasterisk.com>
parents: 991
diff changeset
513
b24885725f59 support for pwm board
drewp <drewp@bigasterisk.com>
parents: 991
diff changeset
514 def generateSetupCode(self):
b24885725f59 support for pwm board
drewp <drewp@bigasterisk.com>
parents: 991
diff changeset
515 return '''
b24885725f59 support for pwm board
drewp <drewp@bigasterisk.com>
parents: 991
diff changeset
516 %(pwm)s.begin();
b24885725f59 support for pwm board
drewp <drewp@bigasterisk.com>
parents: 991
diff changeset
517 %(pwm)s.setPWMFreq(1200);
b24885725f59 support for pwm board
drewp <drewp@bigasterisk.com>
parents: 991
diff changeset
518 ''' % self.codeVals
b24885725f59 support for pwm board
drewp <drewp@bigasterisk.com>
parents: 991
diff changeset
519
b24885725f59 support for pwm board
drewp <drewp@bigasterisk.com>
parents: 991
diff changeset
520 def generateActionCode(self):
b24885725f59 support for pwm board
drewp <drewp@bigasterisk.com>
parents: 991
diff changeset
521 return r'''
b24885725f59 support for pwm board
drewp <drewp@bigasterisk.com>
parents: 991
diff changeset
522 while(Serial.available() < 3) NULL;
b24885725f59 support for pwm board
drewp <drewp@bigasterisk.com>
parents: 991
diff changeset
523 byte chan = Serial.read();
b24885725f59 support for pwm board
drewp <drewp@bigasterisk.com>
parents: 991
diff changeset
524 uint16_t level = uint16_t(Serial.read()) << 8;
b24885725f59 support for pwm board
drewp <drewp@bigasterisk.com>
parents: 991
diff changeset
525 level |= Serial.read();
b24885725f59 support for pwm board
drewp <drewp@bigasterisk.com>
parents: 991
diff changeset
526 %(pwm)s.setPWM(chan, 0, level);
b24885725f59 support for pwm board
drewp <drewp@bigasterisk.com>
parents: 991
diff changeset
527 ''' % self.codeVals
b24885725f59 support for pwm board
drewp <drewp@bigasterisk.com>
parents: 991
diff changeset
528
b24885725f59 support for pwm board
drewp <drewp@bigasterisk.com>
parents: 991
diff changeset
529 def outputPatterns(self):
b24885725f59 support for pwm board
drewp <drewp@bigasterisk.com>
parents: 991
diff changeset
530 return [(area, ROOM['brightness'], None) for area in self.outs]
b24885725f59 support for pwm board
drewp <drewp@bigasterisk.com>
parents: 991
diff changeset
531
b24885725f59 support for pwm board
drewp <drewp@bigasterisk.com>
parents: 991
diff changeset
532 def sendOutput(self, statements, write, read):
b24885725f59 support for pwm board
drewp <drewp@bigasterisk.com>
parents: 991
diff changeset
533 assert len(statements) == 1
b24885725f59 support for pwm board
drewp <drewp@bigasterisk.com>
parents: 991
diff changeset
534 assert statements[0][1] == ROOM['brightness'];
b24885725f59 support for pwm board
drewp <drewp@bigasterisk.com>
parents: 991
diff changeset
535 chan = self.outs[statements[0][0]]
b24885725f59 support for pwm board
drewp <drewp@bigasterisk.com>
parents: 991
diff changeset
536 value = float(statements[0][2])
1023
3e6fac8569cd multi-boards on one service, new devices, devices return their current
drewp <drewp@bigasterisk.com>
parents: 997
diff changeset
537 self.values[statements[0][0]] = value
997
b24885725f59 support for pwm board
drewp <drewp@bigasterisk.com>
parents: 991
diff changeset
538 v12 = int(min(4095, max(0, value * 4095)))
b24885725f59 support for pwm board
drewp <drewp@bigasterisk.com>
parents: 991
diff changeset
539 write(chr(chan) + chr(v12 >> 8) + chr(v12 & 0xff))
b24885725f59 support for pwm board
drewp <drewp@bigasterisk.com>
parents: 991
diff changeset
540
b24885725f59 support for pwm board
drewp <drewp@bigasterisk.com>
parents: 991
diff changeset
541 def outputWidgets(self):
b24885725f59 support for pwm board
drewp <drewp@bigasterisk.com>
parents: 991
diff changeset
542 return [{
b24885725f59 support for pwm board
drewp <drewp@bigasterisk.com>
parents: 991
diff changeset
543 'element': 'output-slider',
b24885725f59 support for pwm board
drewp <drewp@bigasterisk.com>
parents: 991
diff changeset
544 'min': 0,
b24885725f59 support for pwm board
drewp <drewp@bigasterisk.com>
parents: 991
diff changeset
545 'max': 1,
b24885725f59 support for pwm board
drewp <drewp@bigasterisk.com>
parents: 991
diff changeset
546 'step': 1 / 255,
b24885725f59 support for pwm board
drewp <drewp@bigasterisk.com>
parents: 991
diff changeset
547 'subj': area,
b24885725f59 support for pwm board
drewp <drewp@bigasterisk.com>
parents: 991
diff changeset
548 'pred': ROOM['brightness'],
b24885725f59 support for pwm board
drewp <drewp@bigasterisk.com>
parents: 991
diff changeset
549 } for area in self.outs]
b24885725f59 support for pwm board
drewp <drewp@bigasterisk.com>
parents: 991
diff changeset
550
974
f707210c13bd new /output to post statements which devices can handle. led and lcd output working
drewp <drewp@bigasterisk.com>
parents: 971
diff changeset
551 @register
f707210c13bd new /output to post statements which devices can handle. led and lcd output working
drewp <drewp@bigasterisk.com>
parents: 971
diff changeset
552 class ST7576Lcd(DeviceType):
f707210c13bd new /output to post statements which devices can handle. led and lcd output working
drewp <drewp@bigasterisk.com>
parents: 971
diff changeset
553 deviceType = ROOM['ST7565Lcd']
f707210c13bd new /output to post statements which devices can handle. led and lcd output working
drewp <drewp@bigasterisk.com>
parents: 971
diff changeset
554 @classmethod
f707210c13bd new /output to post statements which devices can handle. led and lcd output working
drewp <drewp@bigasterisk.com>
parents: 971
diff changeset
555 def findInstances(cls, graph, board):
f707210c13bd new /output to post statements which devices can handle. led and lcd output working
drewp <drewp@bigasterisk.com>
parents: 971
diff changeset
556 grouped = itertools.groupby(
f707210c13bd new /output to post statements which devices can handle. led and lcd output working
drewp <drewp@bigasterisk.com>
parents: 971
diff changeset
557 graph.query("""SELECT DISTINCT ?dev ?pred ?pinNumber WHERE {
f707210c13bd new /output to post statements which devices can handle. led and lcd output working
drewp <drewp@bigasterisk.com>
parents: 971
diff changeset
558 ?board :hasPin ?pin .
f707210c13bd new /output to post statements which devices can handle. led and lcd output working
drewp <drewp@bigasterisk.com>
parents: 971
diff changeset
559 ?pin :pinNumber ?pinNumber;
f707210c13bd new /output to post statements which devices can handle. led and lcd output working
drewp <drewp@bigasterisk.com>
parents: 971
diff changeset
560 :connectedTo ?devPin .
f707210c13bd new /output to post statements which devices can handle. led and lcd output working
drewp <drewp@bigasterisk.com>
parents: 971
diff changeset
561 ?dev a :ST7565Lcd .
f707210c13bd new /output to post statements which devices can handle. led and lcd output working
drewp <drewp@bigasterisk.com>
parents: 971
diff changeset
562 ?dev ?pred ?devPin .
f707210c13bd new /output to post statements which devices can handle. led and lcd output working
drewp <drewp@bigasterisk.com>
parents: 971
diff changeset
563 } ORDER BY ?dev""",
f707210c13bd new /output to post statements which devices can handle. led and lcd output working
drewp <drewp@bigasterisk.com>
parents: 971
diff changeset
564 initBindings=dict(board=board,
f707210c13bd new /output to post statements which devices can handle. led and lcd output working
drewp <drewp@bigasterisk.com>
parents: 971
diff changeset
565 thisType=cls.deviceType),
f707210c13bd new /output to post statements which devices can handle. led and lcd output working
drewp <drewp@bigasterisk.com>
parents: 971
diff changeset
566 initNs={'': ROOM}),
f707210c13bd new /output to post statements which devices can handle. led and lcd output working
drewp <drewp@bigasterisk.com>
parents: 971
diff changeset
567 lambda row: row.dev)
f707210c13bd new /output to post statements which devices can handle. led and lcd output working
drewp <drewp@bigasterisk.com>
parents: 971
diff changeset
568 for dev, connections in grouped:
f707210c13bd new /output to post statements which devices can handle. led and lcd output working
drewp <drewp@bigasterisk.com>
parents: 971
diff changeset
569 connections = dict((role, int(num)) for unused_dev, role, num
f707210c13bd new /output to post statements which devices can handle. led and lcd output working
drewp <drewp@bigasterisk.com>
parents: 971
diff changeset
570 in connections)
f707210c13bd new /output to post statements which devices can handle. led and lcd output working
drewp <drewp@bigasterisk.com>
parents: 971
diff changeset
571 yield cls(graph, dev, connections=connections)
f707210c13bd new /output to post statements which devices can handle. led and lcd output working
drewp <drewp@bigasterisk.com>
parents: 971
diff changeset
572
f707210c13bd new /output to post statements which devices can handle. led and lcd output working
drewp <drewp@bigasterisk.com>
parents: 971
diff changeset
573 def __init__(self, graph, dev, connections):
f707210c13bd new /output to post statements which devices can handle. led and lcd output working
drewp <drewp@bigasterisk.com>
parents: 971
diff changeset
574 super(ST7576Lcd, self).__init__(graph, dev, pinNumber=None)
f707210c13bd new /output to post statements which devices can handle. led and lcd output working
drewp <drewp@bigasterisk.com>
parents: 971
diff changeset
575 self.connections = connections
1023
3e6fac8569cd multi-boards on one service, new devices, devices return their current
drewp <drewp@bigasterisk.com>
parents: 997
diff changeset
576 self.text = ''
974
f707210c13bd new /output to post statements which devices can handle. led and lcd output working
drewp <drewp@bigasterisk.com>
parents: 971
diff changeset
577
f707210c13bd new /output to post statements which devices can handle. led and lcd output working
drewp <drewp@bigasterisk.com>
parents: 971
diff changeset
578 def generateIncludes(self):
f707210c13bd new /output to post statements which devices can handle. led and lcd output working
drewp <drewp@bigasterisk.com>
parents: 971
diff changeset
579 return ['ST7565.h']
f707210c13bd new /output to post statements which devices can handle. led and lcd output working
drewp <drewp@bigasterisk.com>
parents: 971
diff changeset
580
f707210c13bd new /output to post statements which devices can handle. led and lcd output working
drewp <drewp@bigasterisk.com>
parents: 971
diff changeset
581 def generateArduinoLibs(self):
f707210c13bd new /output to post statements which devices can handle. led and lcd output working
drewp <drewp@bigasterisk.com>
parents: 971
diff changeset
582 return ['ST7565']
f707210c13bd new /output to post statements which devices can handle. led and lcd output working
drewp <drewp@bigasterisk.com>
parents: 971
diff changeset
583
f707210c13bd new /output to post statements which devices can handle. led and lcd output working
drewp <drewp@bigasterisk.com>
parents: 971
diff changeset
584 def generateGlobalCode(self):
f707210c13bd new /output to post statements which devices can handle. led and lcd output working
drewp <drewp@bigasterisk.com>
parents: 971
diff changeset
585 return '''
f707210c13bd new /output to post statements which devices can handle. led and lcd output working
drewp <drewp@bigasterisk.com>
parents: 971
diff changeset
586 ST7565 glcd(%(SID)d, %(SCLK)d, %(A0)d, %(RST)d, %(CS)d);
f707210c13bd new /output to post statements which devices can handle. led and lcd output working
drewp <drewp@bigasterisk.com>
parents: 971
diff changeset
587 char newtxt[21*8+1];
f707210c13bd new /output to post statements which devices can handle. led and lcd output working
drewp <drewp@bigasterisk.com>
parents: 971
diff changeset
588 unsigned int written;
f707210c13bd new /output to post statements which devices can handle. led and lcd output working
drewp <drewp@bigasterisk.com>
parents: 971
diff changeset
589 ''' % dict(SID=self.connections[ROOM['lcdSID']],
f707210c13bd new /output to post statements which devices can handle. led and lcd output working
drewp <drewp@bigasterisk.com>
parents: 971
diff changeset
590 SCLK=self.connections[ROOM['lcdSCLK']],
f707210c13bd new /output to post statements which devices can handle. led and lcd output working
drewp <drewp@bigasterisk.com>
parents: 971
diff changeset
591 A0=self.connections[ROOM['lcdA0']],
f707210c13bd new /output to post statements which devices can handle. led and lcd output working
drewp <drewp@bigasterisk.com>
parents: 971
diff changeset
592 RST=self.connections[ROOM['lcdRST']],
f707210c13bd new /output to post statements which devices can handle. led and lcd output working
drewp <drewp@bigasterisk.com>
parents: 971
diff changeset
593 CS=self.connections[ROOM['lcdCS']])
f707210c13bd new /output to post statements which devices can handle. led and lcd output working
drewp <drewp@bigasterisk.com>
parents: 971
diff changeset
594
f707210c13bd new /output to post statements which devices can handle. led and lcd output working
drewp <drewp@bigasterisk.com>
parents: 971
diff changeset
595 def generateSetupCode(self):
f707210c13bd new /output to post statements which devices can handle. led and lcd output working
drewp <drewp@bigasterisk.com>
parents: 971
diff changeset
596 return '''
f707210c13bd new /output to post statements which devices can handle. led and lcd output working
drewp <drewp@bigasterisk.com>
parents: 971
diff changeset
597 glcd.st7565_init();
f707210c13bd new /output to post statements which devices can handle. led and lcd output working
drewp <drewp@bigasterisk.com>
parents: 971
diff changeset
598 glcd.st7565_command(CMD_DISPLAY_ON);
f707210c13bd new /output to post statements which devices can handle. led and lcd output working
drewp <drewp@bigasterisk.com>
parents: 971
diff changeset
599 glcd.st7565_command(CMD_SET_ALLPTS_NORMAL);
f707210c13bd new /output to post statements which devices can handle. led and lcd output working
drewp <drewp@bigasterisk.com>
parents: 971
diff changeset
600 glcd.st7565_set_brightness(0x18);
f707210c13bd new /output to post statements which devices can handle. led and lcd output working
drewp <drewp@bigasterisk.com>
parents: 971
diff changeset
601
f707210c13bd new /output to post statements which devices can handle. led and lcd output working
drewp <drewp@bigasterisk.com>
parents: 971
diff changeset
602 glcd.display(); // show splashscreen
f707210c13bd new /output to post statements which devices can handle. led and lcd output working
drewp <drewp@bigasterisk.com>
parents: 971
diff changeset
603 '''
f707210c13bd new /output to post statements which devices can handle. led and lcd output working
drewp <drewp@bigasterisk.com>
parents: 971
diff changeset
604
f707210c13bd new /output to post statements which devices can handle. led and lcd output working
drewp <drewp@bigasterisk.com>
parents: 971
diff changeset
605 def outputPatterns(self):
f707210c13bd new /output to post statements which devices can handle. led and lcd output working
drewp <drewp@bigasterisk.com>
parents: 971
diff changeset
606 return [(self.uri, ROOM['text'], None)]
f707210c13bd new /output to post statements which devices can handle. led and lcd output working
drewp <drewp@bigasterisk.com>
parents: 971
diff changeset
607
f707210c13bd new /output to post statements which devices can handle. led and lcd output working
drewp <drewp@bigasterisk.com>
parents: 971
diff changeset
608 def sendOutput(self, statements, write, read):
f707210c13bd new /output to post statements which devices can handle. led and lcd output working
drewp <drewp@bigasterisk.com>
parents: 971
diff changeset
609 assert len(statements) == 1
f707210c13bd new /output to post statements which devices can handle. led and lcd output working
drewp <drewp@bigasterisk.com>
parents: 971
diff changeset
610 assert statements[0][:2] == (self.uri, ROOM['text'])
1023
3e6fac8569cd multi-boards on one service, new devices, devices return their current
drewp <drewp@bigasterisk.com>
parents: 997
diff changeset
611 self.text = str(statements[0][2])
3e6fac8569cd multi-boards on one service, new devices, devices return their current
drewp <drewp@bigasterisk.com>
parents: 997
diff changeset
612 assert len(self.text) < 254, repr(self.text)
3e6fac8569cd multi-boards on one service, new devices, devices return their current
drewp <drewp@bigasterisk.com>
parents: 997
diff changeset
613 write(chr(len(self.text)) + self.text)
974
f707210c13bd new /output to post statements which devices can handle. led and lcd output working
drewp <drewp@bigasterisk.com>
parents: 971
diff changeset
614
1023
3e6fac8569cd multi-boards on one service, new devices, devices return their current
drewp <drewp@bigasterisk.com>
parents: 997
diff changeset
615 def hostStatements(self):
3e6fac8569cd multi-boards on one service, new devices, devices return their current
drewp <drewp@bigasterisk.com>
parents: 997
diff changeset
616 return [(self.uri, ROOM['text'], Literal(self.text))]
3e6fac8569cd multi-boards on one service, new devices, devices return their current
drewp <drewp@bigasterisk.com>
parents: 997
diff changeset
617
975
f3023410d875 polymer board debug page with working output widgets
drewp <drewp@bigasterisk.com>
parents: 974
diff changeset
618 def outputWidgets(self):
f3023410d875 polymer board debug page with working output widgets
drewp <drewp@bigasterisk.com>
parents: 974
diff changeset
619 return [{
f3023410d875 polymer board debug page with working output widgets
drewp <drewp@bigasterisk.com>
parents: 974
diff changeset
620 'element': 'output-fixed-text',
f3023410d875 polymer board debug page with working output widgets
drewp <drewp@bigasterisk.com>
parents: 974
diff changeset
621 'cols': 21,
f3023410d875 polymer board debug page with working output widgets
drewp <drewp@bigasterisk.com>
parents: 974
diff changeset
622 'rows': 8,
f3023410d875 polymer board debug page with working output widgets
drewp <drewp@bigasterisk.com>
parents: 974
diff changeset
623 'subj': self.uri,
f3023410d875 polymer board debug page with working output widgets
drewp <drewp@bigasterisk.com>
parents: 974
diff changeset
624 'pred': ROOM['text'],
f3023410d875 polymer board debug page with working output widgets
drewp <drewp@bigasterisk.com>
parents: 974
diff changeset
625 }]
f3023410d875 polymer board debug page with working output widgets
drewp <drewp@bigasterisk.com>
parents: 974
diff changeset
626
974
f707210c13bd new /output to post statements which devices can handle. led and lcd output working
drewp <drewp@bigasterisk.com>
parents: 971
diff changeset
627 def generateActionCode(self):
f707210c13bd new /output to post statements which devices can handle. led and lcd output working
drewp <drewp@bigasterisk.com>
parents: 971
diff changeset
628 return '''
f707210c13bd new /output to post statements which devices can handle. led and lcd output working
drewp <drewp@bigasterisk.com>
parents: 971
diff changeset
629 while(Serial.available() < 1) NULL;
f707210c13bd new /output to post statements which devices can handle. led and lcd output working
drewp <drewp@bigasterisk.com>
parents: 971
diff changeset
630 byte bufSize = Serial.read();
975
f3023410d875 polymer board debug page with working output widgets
drewp <drewp@bigasterisk.com>
parents: 974
diff changeset
631 for (byte i = 0; i < bufSize; ++i) {
974
f707210c13bd new /output to post statements which devices can handle. led and lcd output working
drewp <drewp@bigasterisk.com>
parents: 971
diff changeset
632 while(Serial.available() < 1) NULL;
f707210c13bd new /output to post statements which devices can handle. led and lcd output working
drewp <drewp@bigasterisk.com>
parents: 971
diff changeset
633 newtxt[i] = Serial.read();
f707210c13bd new /output to post statements which devices can handle. led and lcd output working
drewp <drewp@bigasterisk.com>
parents: 971
diff changeset
634 }
975
f3023410d875 polymer board debug page with working output widgets
drewp <drewp@bigasterisk.com>
parents: 974
diff changeset
635 for (byte i = bufSize; i < sizeof(newtxt); ++i) {
f3023410d875 polymer board debug page with working output widgets
drewp <drewp@bigasterisk.com>
parents: 974
diff changeset
636 newtxt[i] = 0;
f3023410d875 polymer board debug page with working output widgets
drewp <drewp@bigasterisk.com>
parents: 974
diff changeset
637 }
974
f707210c13bd new /output to post statements which devices can handle. led and lcd output working
drewp <drewp@bigasterisk.com>
parents: 971
diff changeset
638 glcd.clear();
f707210c13bd new /output to post statements which devices can handle. led and lcd output working
drewp <drewp@bigasterisk.com>
parents: 971
diff changeset
639 glcd.drawstring(0,0, newtxt);
f707210c13bd new /output to post statements which devices can handle. led and lcd output working
drewp <drewp@bigasterisk.com>
parents: 971
diff changeset
640 glcd.display();
f707210c13bd new /output to post statements which devices can handle. led and lcd output working
drewp <drewp@bigasterisk.com>
parents: 971
diff changeset
641 '''
f707210c13bd new /output to post statements which devices can handle. led and lcd output working
drewp <drewp@bigasterisk.com>
parents: 971
diff changeset
642
1023
3e6fac8569cd multi-boards on one service, new devices, devices return their current
drewp <drewp@bigasterisk.com>
parents: 997
diff changeset
643 @register
3e6fac8569cd multi-boards on one service, new devices, devices return their current
drewp <drewp@bigasterisk.com>
parents: 997
diff changeset
644 class RgbPixels(DeviceType):
3e6fac8569cd multi-boards on one service, new devices, devices return their current
drewp <drewp@bigasterisk.com>
parents: 997
diff changeset
645 """chain of FastLED-controllable rgb pixels"""
3e6fac8569cd multi-boards on one service, new devices, devices return their current
drewp <drewp@bigasterisk.com>
parents: 997
diff changeset
646 deviceType = ROOM['RgbPixels']
3e6fac8569cd multi-boards on one service, new devices, devices return their current
drewp <drewp@bigasterisk.com>
parents: 997
diff changeset
647
3e6fac8569cd multi-boards on one service, new devices, devices return their current
drewp <drewp@bigasterisk.com>
parents: 997
diff changeset
648 def __init__(self, graph, uri, pinNumber):
3e6fac8569cd multi-boards on one service, new devices, devices return their current
drewp <drewp@bigasterisk.com>
parents: 997
diff changeset
649 super(RgbPixels, self).__init__(graph, uri, pinNumber)
1140
f349fe25789c rgb strip animation support in arduinoNode
drewp <drewp@bigasterisk.com>
parents: 1139
diff changeset
650 self.anim = RgbPixelsAnimation(graph, uri, self.updateOutput)
f349fe25789c rgb strip animation support in arduinoNode
drewp <drewp@bigasterisk.com>
parents: 1139
diff changeset
651
1023
3e6fac8569cd multi-boards on one service, new devices, devices return their current
drewp <drewp@bigasterisk.com>
parents: 997
diff changeset
652 self.replace = {'ledArray': 'leds_%s' % self.pinNumber,
1140
f349fe25789c rgb strip animation support in arduinoNode
drewp <drewp@bigasterisk.com>
parents: 1139
diff changeset
653 'ledCount': self.anim.maxIndex() - 1,
1023
3e6fac8569cd multi-boards on one service, new devices, devices return their current
drewp <drewp@bigasterisk.com>
parents: 997
diff changeset
654 'pin': self.pinNumber,
3e6fac8569cd multi-boards on one service, new devices, devices return their current
drewp <drewp@bigasterisk.com>
parents: 997
diff changeset
655 'ledType': 'WS2812',
3e6fac8569cd multi-boards on one service, new devices, devices return their current
drewp <drewp@bigasterisk.com>
parents: 997
diff changeset
656 }
3e6fac8569cd multi-boards on one service, new devices, devices return their current
drewp <drewp@bigasterisk.com>
parents: 997
diff changeset
657
3e6fac8569cd multi-boards on one service, new devices, devices return their current
drewp <drewp@bigasterisk.com>
parents: 997
diff changeset
658 def generateIncludes(self):
3e6fac8569cd multi-boards on one service, new devices, devices return their current
drewp <drewp@bigasterisk.com>
parents: 997
diff changeset
659 """filenames of .h files to #include"""
3e6fac8569cd multi-boards on one service, new devices, devices return their current
drewp <drewp@bigasterisk.com>
parents: 997
diff changeset
660 return ['FastLED.h']
3e6fac8569cd multi-boards on one service, new devices, devices return their current
drewp <drewp@bigasterisk.com>
parents: 997
diff changeset
661
3e6fac8569cd multi-boards on one service, new devices, devices return their current
drewp <drewp@bigasterisk.com>
parents: 997
diff changeset
662 def generateArduinoLibs(self):
3e6fac8569cd multi-boards on one service, new devices, devices return their current
drewp <drewp@bigasterisk.com>
parents: 997
diff changeset
663 """names of libraries for the ARDUINO_LIBS line in the makefile"""
3e6fac8569cd multi-boards on one service, new devices, devices return their current
drewp <drewp@bigasterisk.com>
parents: 997
diff changeset
664 return ['FastLED-3.1.0']
3e6fac8569cd multi-boards on one service, new devices, devices return their current
drewp <drewp@bigasterisk.com>
parents: 997
diff changeset
665
3e6fac8569cd multi-boards on one service, new devices, devices return their current
drewp <drewp@bigasterisk.com>
parents: 997
diff changeset
666 def myId(self):
3e6fac8569cd multi-boards on one service, new devices, devices return their current
drewp <drewp@bigasterisk.com>
parents: 997
diff changeset
667 return 'rgb_%s' % self.pinNumber
3e6fac8569cd multi-boards on one service, new devices, devices return their current
drewp <drewp@bigasterisk.com>
parents: 997
diff changeset
668
3e6fac8569cd multi-boards on one service, new devices, devices return their current
drewp <drewp@bigasterisk.com>
parents: 997
diff changeset
669 def generateGlobalCode(self):
3e6fac8569cd multi-boards on one service, new devices, devices return their current
drewp <drewp@bigasterisk.com>
parents: 997
diff changeset
670 return 'CRGB {ledArray}[{ledCount}];'.format(**self.replace)
3e6fac8569cd multi-boards on one service, new devices, devices return their current
drewp <drewp@bigasterisk.com>
parents: 997
diff changeset
671
3e6fac8569cd multi-boards on one service, new devices, devices return their current
drewp <drewp@bigasterisk.com>
parents: 997
diff changeset
672 def generateSetupCode(self):
3e6fac8569cd multi-boards on one service, new devices, devices return their current
drewp <drewp@bigasterisk.com>
parents: 997
diff changeset
673 return 'FastLED.addLeds<{ledType}, {pin}>({ledArray}, {ledCount});'.format(**self.replace)
3e6fac8569cd multi-boards on one service, new devices, devices return their current
drewp <drewp@bigasterisk.com>
parents: 997
diff changeset
674
3e6fac8569cd multi-boards on one service, new devices, devices return their current
drewp <drewp@bigasterisk.com>
parents: 997
diff changeset
675 def sendOutput(self, statements, write, read):
1140
f349fe25789c rgb strip animation support in arduinoNode
drewp <drewp@bigasterisk.com>
parents: 1139
diff changeset
676 log.info('sendOutput start')
f349fe25789c rgb strip animation support in arduinoNode
drewp <drewp@bigasterisk.com>
parents: 1139
diff changeset
677 self.write = write
f349fe25789c rgb strip animation support in arduinoNode
drewp <drewp@bigasterisk.com>
parents: 1139
diff changeset
678 self.anim.onStatements(statements)
f349fe25789c rgb strip animation support in arduinoNode
drewp <drewp@bigasterisk.com>
parents: 1139
diff changeset
679 self.anim.updateOutput()
f349fe25789c rgb strip animation support in arduinoNode
drewp <drewp@bigasterisk.com>
parents: 1139
diff changeset
680 log.info('sendOutput end')
1023
3e6fac8569cd multi-boards on one service, new devices, devices return their current
drewp <drewp@bigasterisk.com>
parents: 997
diff changeset
681
1140
f349fe25789c rgb strip animation support in arduinoNode
drewp <drewp@bigasterisk.com>
parents: 1139
diff changeset
682 def updateOutput(self):
f349fe25789c rgb strip animation support in arduinoNode
drewp <drewp@bigasterisk.com>
parents: 1139
diff changeset
683 write = self.write
f349fe25789c rgb strip animation support in arduinoNode
drewp <drewp@bigasterisk.com>
parents: 1139
diff changeset
684 write(chr(self.anim.maxIndex() + 1))
f349fe25789c rgb strip animation support in arduinoNode
drewp <drewp@bigasterisk.com>
parents: 1139
diff changeset
685 for idx, (r, g, b) in self.anim.currentColors():
f349fe25789c rgb strip animation support in arduinoNode
drewp <drewp@bigasterisk.com>
parents: 1139
diff changeset
686 # my WS2812 need these flipped
f349fe25789c rgb strip animation support in arduinoNode
drewp <drewp@bigasterisk.com>
parents: 1139
diff changeset
687 write(chr(idx) + chr(g) + chr(r) + chr(b))
f349fe25789c rgb strip animation support in arduinoNode
drewp <drewp@bigasterisk.com>
parents: 1139
diff changeset
688
f349fe25789c rgb strip animation support in arduinoNode
drewp <drewp@bigasterisk.com>
parents: 1139
diff changeset
689 def wantIdleOutput(self):
f349fe25789c rgb strip animation support in arduinoNode
drewp <drewp@bigasterisk.com>
parents: 1139
diff changeset
690 return True
f349fe25789c rgb strip animation support in arduinoNode
drewp <drewp@bigasterisk.com>
parents: 1139
diff changeset
691
f349fe25789c rgb strip animation support in arduinoNode
drewp <drewp@bigasterisk.com>
parents: 1139
diff changeset
692 def outputIdle(self, write):
f349fe25789c rgb strip animation support in arduinoNode
drewp <drewp@bigasterisk.com>
parents: 1139
diff changeset
693 self.write = write
f349fe25789c rgb strip animation support in arduinoNode
drewp <drewp@bigasterisk.com>
parents: 1139
diff changeset
694 self.updateOutput()
f349fe25789c rgb strip animation support in arduinoNode
drewp <drewp@bigasterisk.com>
parents: 1139
diff changeset
695
1023
3e6fac8569cd multi-boards on one service, new devices, devices return their current
drewp <drewp@bigasterisk.com>
parents: 997
diff changeset
696 def hostStatements(self):
1140
f349fe25789c rgb strip animation support in arduinoNode
drewp <drewp@bigasterisk.com>
parents: 1139
diff changeset
697 return self.anim.hostStatements()
1023
3e6fac8569cd multi-boards on one service, new devices, devices return their current
drewp <drewp@bigasterisk.com>
parents: 997
diff changeset
698
3e6fac8569cd multi-boards on one service, new devices, devices return their current
drewp <drewp@bigasterisk.com>
parents: 997
diff changeset
699 def outputPatterns(self):
1140
f349fe25789c rgb strip animation support in arduinoNode
drewp <drewp@bigasterisk.com>
parents: 1139
diff changeset
700 return self.anim.outputPatterns()
f349fe25789c rgb strip animation support in arduinoNode
drewp <drewp@bigasterisk.com>
parents: 1139
diff changeset
701
f349fe25789c rgb strip animation support in arduinoNode
drewp <drewp@bigasterisk.com>
parents: 1139
diff changeset
702 def outputWidgets(self):
f349fe25789c rgb strip animation support in arduinoNode
drewp <drewp@bigasterisk.com>
parents: 1139
diff changeset
703 return self.anim.outputWidgets()
1023
3e6fac8569cd multi-boards on one service, new devices, devices return their current
drewp <drewp@bigasterisk.com>
parents: 997
diff changeset
704
3e6fac8569cd multi-boards on one service, new devices, devices return their current
drewp <drewp@bigasterisk.com>
parents: 997
diff changeset
705 def generateActionCode(self):
1140
f349fe25789c rgb strip animation support in arduinoNode
drewp <drewp@bigasterisk.com>
parents: 1139
diff changeset
706 # not yet combining updates- may be slow
1023
3e6fac8569cd multi-boards on one service, new devices, devices return their current
drewp <drewp@bigasterisk.com>
parents: 997
diff changeset
707 return '''
1140
f349fe25789c rgb strip animation support in arduinoNode
drewp <drewp@bigasterisk.com>
parents: 1139
diff changeset
708 while(Serial.available() < 1) NULL;
f349fe25789c rgb strip animation support in arduinoNode
drewp <drewp@bigasterisk.com>
parents: 1139
diff changeset
709 byte count = Serial.read();
f349fe25789c rgb strip animation support in arduinoNode
drewp <drewp@bigasterisk.com>
parents: 1139
diff changeset
710 for (byte elt=0; elt<count; ++elt) {{
1023
3e6fac8569cd multi-boards on one service, new devices, devices return their current
drewp <drewp@bigasterisk.com>
parents: 997
diff changeset
711 while(Serial.available() < 1) NULL;
3e6fac8569cd multi-boards on one service, new devices, devices return their current
drewp <drewp@bigasterisk.com>
parents: 997
diff changeset
712 byte id = Serial.read();
3e6fac8569cd multi-boards on one service, new devices, devices return their current
drewp <drewp@bigasterisk.com>
parents: 997
diff changeset
713
3e6fac8569cd multi-boards on one service, new devices, devices return their current
drewp <drewp@bigasterisk.com>
parents: 997
diff changeset
714 while(Serial.available() < 1) NULL;
3e6fac8569cd multi-boards on one service, new devices, devices return their current
drewp <drewp@bigasterisk.com>
parents: 997
diff changeset
715 byte r = Serial.read();
3e6fac8569cd multi-boards on one service, new devices, devices return their current
drewp <drewp@bigasterisk.com>
parents: 997
diff changeset
716
3e6fac8569cd multi-boards on one service, new devices, devices return their current
drewp <drewp@bigasterisk.com>
parents: 997
diff changeset
717 while(Serial.available() < 1) NULL;
3e6fac8569cd multi-boards on one service, new devices, devices return their current
drewp <drewp@bigasterisk.com>
parents: 997
diff changeset
718 byte g = Serial.read();
3e6fac8569cd multi-boards on one service, new devices, devices return their current
drewp <drewp@bigasterisk.com>
parents: 997
diff changeset
719
3e6fac8569cd multi-boards on one service, new devices, devices return their current
drewp <drewp@bigasterisk.com>
parents: 997
diff changeset
720 while(Serial.available() < 1) NULL;
3e6fac8569cd multi-boards on one service, new devices, devices return their current
drewp <drewp@bigasterisk.com>
parents: 997
diff changeset
721 byte b = Serial.read();
3e6fac8569cd multi-boards on one service, new devices, devices return their current
drewp <drewp@bigasterisk.com>
parents: 997
diff changeset
722
1140
f349fe25789c rgb strip animation support in arduinoNode
drewp <drewp@bigasterisk.com>
parents: 1139
diff changeset
723 {ledArray}[id] = CRGB(r, g, b);
f349fe25789c rgb strip animation support in arduinoNode
drewp <drewp@bigasterisk.com>
parents: 1139
diff changeset
724 }}
f349fe25789c rgb strip animation support in arduinoNode
drewp <drewp@bigasterisk.com>
parents: 1139
diff changeset
725 FastLED.show();
1023
3e6fac8569cd multi-boards on one service, new devices, devices return their current
drewp <drewp@bigasterisk.com>
parents: 997
diff changeset
726
3e6fac8569cd multi-boards on one service, new devices, devices return their current
drewp <drewp@bigasterisk.com>
parents: 997
diff changeset
727 '''.format(**self.replace)
3e6fac8569cd multi-boards on one service, new devices, devices return their current
drewp <drewp@bigasterisk.com>
parents: 997
diff changeset
728
971
fbe72d44f15a only recompile if the C code is new. redo Device class api. single temperature sensor is working
drewp <drewp@bigasterisk.com>
parents: 969
diff changeset
729 def makeDevices(graph, board):
fbe72d44f15a only recompile if the C code is new. redo Device class api. single temperature sensor is working
drewp <drewp@bigasterisk.com>
parents: 969
diff changeset
730 out = []
fbe72d44f15a only recompile if the C code is new. redo Device class api. single temperature sensor is working
drewp <drewp@bigasterisk.com>
parents: 969
diff changeset
731 for dt in sorted(_knownTypes, key=lambda cls: cls.__name__):
fbe72d44f15a only recompile if the C code is new. redo Device class api. single temperature sensor is working
drewp <drewp@bigasterisk.com>
parents: 969
diff changeset
732 out.extend(dt.findInstances(graph, board))
fbe72d44f15a only recompile if the C code is new. redo Device class api. single temperature sensor is working
drewp <drewp@bigasterisk.com>
parents: 969
diff changeset
733 return out
fbe72d44f15a only recompile if the C code is new. redo Device class api. single temperature sensor is working
drewp <drewp@bigasterisk.com>
parents: 969
diff changeset
734