Smart-Home am Beispiel der Präsenzerkennung im Raum Projektarbeit Lennart Heimbs, Johannes Krug, Sebastian Dohle und Kevin Holzschuh bei Prof. Oliver Hofmann SS2019
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

launch.json 530B

123456789101112131415161718192021
  1. {
  2. "version": "0.2.0",
  3. "configurations": [
  4. {
  5. "name": "Python: Current File",
  6. "type": "python",
  7. "request": "launch",
  8. "program": "${file}",
  9. "console": "integratedTerminal"
  10. },
  11. {
  12. "name": "Python: Current File with args",
  13. "type": "python",
  14. "request": "launch",
  15. "program": "${file}",
  16. "console": "integratedTerminal",
  17. "args": ["-v", "~/Videos/video.h264"]
  18. }
  19. ]
  20. }