Kconfig.projbuild 780 B

12345678910111213141516171819202122232425262728
  1. menu "Peer Example Configuration"
  2. choice ESP32_CAMERA_MODEL
  3. prompt "Camera model"
  4. default ESP32_EYE
  5. help
  6. Select the camera model to use.
  7. config ESP32_EYE
  8. bool "ESP32-EYE"
  9. config ESP32S3_EYE
  10. bool "ESP32S3-EYE"
  11. config ESP32_M5STACK_CAMERA_B
  12. bool "M5STACK-CAMERA-B"
  13. config ESP32S3_XIAO_SENSE
  14. bool "ESP32S3-XIAO-SENSE"
  15. endchoice
  16. config SIGNALING_URL
  17. string "Signaling URL"
  18. default "https://libpeer.com/public/test"
  19. help
  20. Enter the URL of the Peer library to use.
  21. config SIGNALING_TOKEN
  22. string "Signaling Token"
  23. default ""
  24. help
  25. Enter the token of the Peer library to use.
  26. endmenu