mirror of
https://github.com/tinygo-org/drivers.git
synced 2026-08-03 06:27:47 +00:00
3c5e17423a
Signed-off-by: deadprogram <ron@hybridgroup.com>
74 lines
1.3 KiB
Go
74 lines
1.3 KiB
Go
// This example posts an URL using http.PostForm(). URL scheme can be http or https.
|
|
//
|
|
// Note: It may be necessary to increase the stack size when using "net/http".
|
|
// Use the -stack-size=4KB command line option.
|
|
//
|
|
// Some targets (Arduino Nano33 IoT) don't have enough SRAM to run
|
|
// http.PostForm(). Use the following for those targets:
|
|
//
|
|
// examples/net/webclient (for HTTP)
|
|
// examples/net/tlsclient (for HTTPS)
|
|
|
|
//go:build ninafw || wioterminal
|
|
|
|
package main
|
|
|
|
import (
|
|
"fmt"
|
|
"io"
|
|
"log"
|
|
"machine"
|
|
"net/http"
|
|
"net/url"
|
|
"time"
|
|
|
|
"tinygo.org/x/drivers/netlink"
|
|
"tinygo.org/x/drivers/netlink/probe"
|
|
)
|
|
|
|
var (
|
|
ssid string
|
|
pass string
|
|
)
|
|
|
|
func main() {
|
|
|
|
waitSerial()
|
|
|
|
link, _ := probe.Probe()
|
|
|
|
err := link.NetConnect(&netlink.ConnectParams{
|
|
Ssid: ssid,
|
|
Passphrase: pass,
|
|
})
|
|
if err != nil {
|
|
log.Fatal(err)
|
|
}
|
|
|
|
path := "https://httpbin.org/post"
|
|
data := url.Values{
|
|
"name": {"John Doe"},
|
|
"occupation": {"gardener"},
|
|
}
|
|
|
|
resp, err := http.PostForm(path, data)
|
|
if err != nil {
|
|
log.Fatal(err)
|
|
}
|
|
defer resp.Body.Close()
|
|
|
|
body, err := io.ReadAll(resp.Body)
|
|
if err != nil {
|
|
log.Fatal(err)
|
|
}
|
|
|
|
fmt.Println(string(body))
|
|
}
|
|
|
|
// Wait for user to open serial console
|
|
func waitSerial() {
|
|
for !machine.Serial.DTR() {
|
|
time.Sleep(100 * time.Millisecond)
|
|
}
|
|
}
|