Fixed slider bug

This commit is contained in:
Sagi Frimer
2019-03-26 21:05:31 +02:00
parent 8dee0e1ba7
commit 4f64e1c5d3
3 changed files with 7 additions and 4 deletions

View File

@@ -1,15 +1,18 @@
import tornado.websocket
import json
class ChameleonWebSocket(tornado.websocket.WebSocketHandler):
def check_origin(self, origin):
return True
def open(self):
self.write_message(json.dumps(
{
'cam1':{
'pipeline':1,
'exposure':12
'pipeline': 1,
'exposure': 12
}
}
))