config.ini 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. # size of the trackable area
  2. [field]
  3. # width in mm
  4. x = 390
  5. # height in mm
  6. y = 395
  7. [arduino]
  8. # leave port empty for auto config
  9. # port =
  10. port = /dev/ttyACM0
  11. # acoustic sensor config
  12. [ac_sensor]
  13. # distance of the sensors in front of y=0 in mm
  14. y_offset = 50
  15. # left sensor x offset to the left border at x=0 in mm
  16. left_x_offset = 0
  17. # right sensor x offset to the right border at x=width in mm
  18. right_x_offset = 0
  19. # positions [(x,y1), (x,y2)] at which the calibration takes place in mm
  20. calibration_y_offset_1 = 100
  21. calibration_y_offset_2 = 395
  22. calibration_x_offset = 195
  23. # default speed of sound in mm / us (or km / s)
  24. # only used before calibration
  25. sonicspeed = 0.342
  26. # default arduino timing overhead in us
  27. # only used before calibration
  28. overhead_left = 20
  29. overhead_right = 20
  30. [opt_sensor]
  31. capture_device = -1
  32. debug_image = yes
  33. # distance between center of fiducials in mm
  34. target_distance = 55
  35. # x offset when target is in the center of camera (at offset=50%) in mm
  36. x_offset = 195
  37. # horizontal FoV of the camera in °
  38. # RaspiCam datasheet: https://www.raspberrypi.org/documentation/hardware/camera/
  39. fov = 53.50
  40. [mag_sensor]
  41. max_x = 800
  42. max_y = 800
  43. off_x = 0
  44. off_y = 0
  45. off_z = 0
  46. scale_x = 0
  47. scale_y = 0
  48. scale_z = 0
  49. [gui]
  50. fullscreen = no
  51. log_lines = 100