We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 30e50f2 commit d66fa82Copy full SHA for d66fa82
content/ide-integration/_index.md
@@ -0,0 +1,22 @@
1
+---
2
+title: "IDE Integration"
3
+weight: 8
4
5
+
6
+## GoPath
7
8
+In order to get IDE support like autocomplete you have to add the tinygo src path to your [GOPATH](https://github.com/golang/go/wiki/GOPATH).
9
+After adding the tinygo source path to the GOPATH go will know, where to look for the packages like `machine`
10
11
+### Ubuntu Example
12
+You can just append the path to your tinygo installation in your GOPATH.
13
14
+> export GOPATH=$GOPATH:/path/to/your/tinygo
15
16
+## TinyGo Drivers
17
18
+There are already lot's of drivers for common hardware. See [this](https://github.com/tinygo-org/drivers) for more information.
19
20
+### Install drivers
21
22
+> go get tinygo.org/x/drivers
0 commit comments