From 4a2e9f6d252602b03561a1d0a3180d7c45377181 Mon Sep 17 00:00:00 2001 From: Alexandre Gobbo Date: Mon, 6 Apr 2020 15:05:58 +0200 Subject: [PATCH] Script execution --- script/test/test_stream_example.py | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 script/test/test_stream_example.py diff --git a/script/test/test_stream_example.py b/script/test/test_stream_example.py new file mode 100644 index 0000000..6fdec62 --- /dev/null +++ b/script/test/test_stream_example.py @@ -0,0 +1,13 @@ +cam_server.stop() +cam_server.start("stream_example") +cam_server.stream.waitCacheChange(3000) + +names=[] +data=[] +for k,v in cam_server.value.items(): + names.append(k) + data.append(tv) + +plot(data, names) + +