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 519B

12345678910111213141516171819202122
  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", "run.mp4"]
  18. }
  19. ]
  20. }