comparison service/arduinoNode/devices.py @ 331:a94f2a522d41

build and import updates for rdfdb, etc Ignore-this: 233cb2b31f03be51695f0fff40eecca7
author drewp@bigasterisk.com
date Mon, 19 Feb 2018 04:21:28 -0800
parents 6614416dd2c3
children bb80182195c0
comparison
equal deleted inserted replaced
330:1ff1fbf6b183 331:a94f2a522d41
1 from __future__ import division 1 from __future__ import division
2 import itertools, logging, struct, os 2
3 import itertools, logging, struct, os, sys
3 from rdflib import Namespace, RDF, URIRef, Literal 4 from rdflib import Namespace, RDF, URIRef, Literal
4 import time 5 import time
6
7 sys.path.append('../../lib')
8 from devices_shared import RgbPixelsAnimation
5 9
6 ROOM = Namespace('http://projects.bigasterisk.com/room/') 10 ROOM = Namespace('http://projects.bigasterisk.com/room/')
7 XSD = Namespace('http://www.w3.org/2001/XMLSchema#') 11 XSD = Namespace('http://www.w3.org/2001/XMLSchema#')
8 log = logging.getLogger() 12 log = logging.getLogger()
9 13