Skip to content

Commit

Permalink
api: add multicam methods
Browse files Browse the repository at this point in the history
  • Loading branch information
nzjrs committed Jan 6, 2024
1 parent ab04e54 commit 993f04e
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions motifapi/api.py
Original file line number Diff line number Diff line change
Expand Up @@ -139,6 +139,11 @@ class MotifApi(object):
'io/(?P<name>[^\s /]+)/set': 'POST',
'io/log': 'POST',
'io/read': 'GET',
'multicam/synchronize': 'POST',
'multicam/connect_camera/(?P<serial>[^\s /]+)': 'POST',
'multicam/disconnect_camera/(?P<serial>[^\s /]+)': 'POST',
'multicam/connect_all': 'POST',
'multicam/disconnect_all': 'POST',
}

def __init__(self, host=None, api_key=None, port=None, ca_cert=None, api_version=1):
Expand Down

0 comments on commit 993f04e

Please sign in to comment.