mirror of
https://github.com/tinygo-org/drivers.git
synced 2026-08-01 13:37:49 +00:00
06dd60fba2
* Add wifi driver comboat for Elecrow W5 rp2040 and rp2350 devices Combo-AT driver uses AT command set to talk to onboard rtl8720d wifi device. The driver supports UDP/TCP/TLS clients in Wifi STA mode. Support for UDP/TCP servers is not supported, currently. https://aithinker-combo-guide.readthedocs.io/en/latest/docs/instruction/index.html https://aithinker-combo-guide.readthedocs.io/en/latest/docs/command-set/index.html https://aithinker-combo-guide.readthedocs.io/en/latest/docs/command-examples/index.html * Add wifi driver comboat for Elecrow W5 rp2040 and rp2350 devices Combo-AT driver uses AT command set to talk to onboard rtl8720d wifi device. The driver supports UDP/TCP/TLS clients in Wifi STA mode. Support for UDP/TCP servers is not supported, currently. https://aithinker-combo-guide.readthedocs.io/en/latest/docs/instruction/index.html https://aithinker-combo-guide.readthedocs.io/en/latest/docs/command-set/index.html https://aithinker-combo-guide.readthedocs.io/en/latest/docs/command-examples/index.html * switch to comboat_fw build tag for examples/net's that work with comboat driver
65 lines
1.3 KiB
Go
65 lines
1.3 KiB
Go
// This example is a websocket client. It connects to a websocket server
|
|
// which echos messages back to the client. For server, see
|
|
//
|
|
// https://pkg.go.dev/golang.org/x/net/websocket#example-Handler
|
|
//
|
|
// Note: It may be necessary to increase the stack size when using
|
|
// "golang.org/x/net/websocket". Use the -stack-size=4KB command line option.
|
|
|
|
//go:build ninafw || wioterminal || comboat_fw
|
|
|
|
package main
|
|
|
|
import (
|
|
"fmt"
|
|
"log"
|
|
"machine"
|
|
"time"
|
|
|
|
"golang.org/x/net/websocket"
|
|
"tinygo.org/x/drivers/netlink"
|
|
"tinygo.org/x/drivers/netlink/probe"
|
|
)
|
|
|
|
var (
|
|
ssid string
|
|
pass string
|
|
url string = "ws://10.0.0.100:8080/echo"
|
|
)
|
|
|
|
// Wait for user to open serial console
|
|
func waitSerial() {
|
|
for !machine.Serial.DTR() {
|
|
time.Sleep(100 * time.Millisecond)
|
|
}
|
|
}
|
|
|
|
func main() {
|
|
waitSerial()
|
|
|
|
link, _ := probe.Probe()
|
|
|
|
err := link.NetConnect(&netlink.ConnectParams{
|
|
Ssid: ssid,
|
|
Passphrase: pass,
|
|
})
|
|
if err != nil {
|
|
log.Fatal(err)
|
|
}
|
|
|
|
origin := "http://localhost/"
|
|
ws, err := websocket.Dial(url, "", origin)
|
|
if err != nil {
|
|
log.Fatal(err)
|
|
}
|
|
if _, err := ws.Write([]byte("hello, world!\n")); err != nil {
|
|
log.Fatal(err)
|
|
}
|
|
var msg = make([]byte, 512)
|
|
var n int
|
|
if n, err = ws.Read(msg); err != nil {
|
|
log.Fatal(err)
|
|
}
|
|
fmt.Printf("Received: %s", msg[:n])
|
|
}
|