fix simulator device config (#31827)

fix sim
pull/31829/head
Justin Newberry 1 year ago committed by GitHub
parent 6768f13f6a
commit 1db30eae3a
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
  1. 3
      common/transformations/camera.py

@ -47,6 +47,9 @@ DEVICE_CAMERAS = {
# before deviceState.deviceType was set, assume tici AR config
("unknown", "ar0231"): ar_ox_config,
("unknown", "ox03c10"): ar_ox_config,
# simulator (emulates a tici)
("pc", "unknown"): ar_ox_config,
}
prods = itertools.product(('tici', 'tizi', 'mici'), (('ar0231', ar_ox_config), ('ox03c10', ar_ox_config), ('os04c10', os_config)))
DEVICE_CAMERAS.update({(d, c[0]): c[1] for d, c in prods})

Loading…
Cancel
Save