1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465 |
- # size of the trackable area
- [field]
- # width in mm
- x = 390
- # height in mm
- y = 395
- [arduino]
- # leave port empty for auto config
- # port =
- port = /dev/ttyACM0
- # acoustic sensor config
- [ac_sensor]
- # distance of the sensors in front of y=0 in mm
- y_offset = 50
- # left sensor x offset to the left border at x=0 in mm
- left_x_offset = 0
- # right sensor x offset to the right border at x=width in mm
- right_x_offset = 0
- # positions [(x,y1), (x,y2)] at which the calibration takes place in mm
- calibration_y_offset_1 = 100
- calibration_y_offset_2 = 395
- calibration_x_offset = 195
- # default speed of sound in mm / us (or km / s)
- # only used before calibration
- sonicspeed = 0.342
- # default arduino timing overhead in us
- # only used before calibration
- overhead_left = 20
- overhead_right = 20
- [opt_sensor]
- capture_device = -1
- debug_image = yes
- # distance between center of fiducials in mm
- target_distance = 55
- # x offset when target is in the center of camera (at offset=50%) in mm
- x_offset = 195
- # horizontal FoV of the camera in °
- # RaspiCam datasheet: https://www.raspberrypi.org/documentation/hardware/camera/
- fov = 53.50
- [mag_sensor]
- max_x = 800
- max_y = 800
- off_x = 0
- off_y = 0
- off_z = 0
- scale_x = 0
- scale_y = 0
- scale_z = 0
- [gui]
- fullscreen = no
- log_lines = 100
|