Skip to content

b0ch3nski/go-starlink

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

11 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

go-starlink

license commit go.dev goreportcard issues sourcegraph

Simple Golang client to interact with SpaceX Starlink dish, based on Proto files acquired from Dishy itself using GRPC Server Reflection and grpcurl tool.

For a code generation procedure, see included Makefile.

install

go get github.com/b0ch3nski/go-starlink

example

ctx := context.Background()

starlinkClient, _ := client.NewClient(ctx, client.DefaultDishyAddr)
starlinkStatus, _ := starlinkClient.Status(ctx)

fmt.Println(starlinkStatus)