You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
import time
|
|
|
|
import gex
|
|
|
|
with gex.Client(gex.TrxRawUSB()) as client:
|
|
fcap = gex.FCAP(client, 'fcap')
|
|
|
|
fcap.stop()
|
|
fcap.indirect_start()
|
|
|
|
while True:
|
|
time.sleep(1)
|
|
print(fcap.indirect_read())
|
|
#print(fcap.indirect_burst(3, timeout=20))
|
|
|
|
# print(fcap.indirect_burst(10, timeout=20))
|
|
|
|
|
|
|