aboutsummaryrefslogtreecommitdiff
path: root/examples
diff options
context:
space:
mode:
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)