blob: 270d42c6d6c55ebb14db34ed3a414e811c9d9029 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
#!/usr/bin/python
from __future__ import absolute_import, print_function, division
from pymba import *
import time
def test_interfaces():
# start Vimba
with Vimba() as vimba:
# get list of available interfaces
interfaceIds = vimba.getInterfaceIds()
for interfaceId in interfaceIds:
print('Interface ID:', interfaceId)
# get interface object and open it
interface0 = vimba.getInterface(interfaceIds[0])
interface0.openInterface()
# list interface features
interfaceFeatureNames = interface0.getFeatureNames()
for name in interfaceFeatureNames:
print('Interface feature:', name)
# close interface
interface0.closeInterface()
if __name__ == '__main__':
test_interfaces()
|