repository to manage all files related to the makeathon farm bot project (Software + Documentation).
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 898B

123456789101112131415161718192021222324252627
  1. {
  2. // Verwendet IntelliSense zum Ermitteln möglicher Attribute.
  3. // Zeigen Sie auf vorhandene Attribute, um die zugehörigen Beschreibungen anzuzeigen.
  4. // Weitere Informationen finden Sie unter https://go.microsoft.com/fwlink/?linkid=830387
  5. "version": "0.2.0",
  6. "configurations": [
  7. {
  8. "name": "Download and Run current file",
  9. "type": "ev3devBrowser",
  10. "request": "launch",
  11. "program": "/home/robot/${workspaceFolderBasename}/${relativeFile}",
  12. "interactiveTerminal": true
  13. },
  14. {
  15. "name": "Download and Run my-program",
  16. "type": "ev3devBrowser",
  17. "request": "launch",
  18. "program": "/home/robot/${workspaceFolderBasename}/my-program (replace 'my-program' with the actual path)",
  19. "interactiveTerminal": true
  20. }
  21. ]
  22. }