aboutsummaryrefslogtreecommitdiff
path: root/examples
diff options
context:
space:
mode:
authormorefigs <morefigs@gmail.com>2019-01-27 13:45:27 +1100
committermorefigs <morefigs@gmail.com>2019-01-27 13:45:27 +1100
commitc63ba37c7f8da03de4fd8030bd392b966be7f335 (patch)
tree5a4cc0e01f4f891e16a613c4549d72723577b017 /examples
parentf2477b9f6a19fd21df6955e4818cf1274ce34a65 (diff)
downloadpymba-c63ba37c7f8da03de4fd8030bd392b966be7f335.tar.gz
pymba-c63ba37c7f8da03de4fd8030bd392b966be7f335.zip
delete old examples
Diffstat (limited to 'examples')
-rw-r--r--examples/show_cameras.py12
-rw-r--r--examples/show_interfaces.py7
-rw-r--r--examples/show_system.py7
3 files changed, 0 insertions, 26 deletions
diff --git a/examples/show_cameras.py b/examples/show_cameras.py
deleted file mode 100644
index 39fffe8..0000000
--- a/examples/show_cameras.py
+++ /dev/null
@@ -1,12 +0,0 @@
-from pymba.vimba import Vimba
-from time import sleep
-
-
-if __name__ == '__main__':
-
- with Vimba() as vmb:
- # required for discovering GigE cameras
- if vmb.system.GeVTLIsPresent:
- vmb.system.run_feature_command("GeVDiscoveryAllOnce")
- sleep(0.2)
- print(vmb.get_camera_ids())
diff --git a/examples/show_interfaces.py b/examples/show_interfaces.py
deleted file mode 100644
index 9d95fc1..0000000
--- a/examples/show_interfaces.py
+++ /dev/null
@@ -1,7 +0,0 @@
-from pymba.vimba import Vimba
-
-
-if __name__ == '__main__':
-
- with Vimba() as vmb:
- print(vmb.get_interface_ids())
diff --git a/examples/show_system.py b/examples/show_system.py
deleted file mode 100644
index 4ce2807..0000000
--- a/examples/show_system.py
+++ /dev/null
@@ -1,7 +0,0 @@
-from pymba.vimba import Vimba
-
-
-if __name__ == '__main__':
-
- vmb = Vimba()
- print(vmb.system)