README ¶ snoc A Go package to allow you to send message on Sigfox network with SNOC board. Usage package main import ( "github.com/k-yak/snoc" ) func main() { var s snoc.Sigfox s.Init("/dev/ttyAMA0") err := s.SendMessage("4242") fmt.Println(err) } Expand ▾ Collapse ▴ Documentation ¶ Index ¶ type Sigfox func (s *Sigfox) Init(port string) func (s *Sigfox) OpenPort() func (s *Sigfox) SendMessage(message string) error func (s *Sigfox) WaitFor(success, failure string, timeOut int) error Constants ¶ This section is empty. Variables ¶ This section is empty. Functions ¶ This section is empty. Types ¶ type Sigfox ¶ type Sigfox struct { // contains filtered or unexported fields } func (*Sigfox) Init ¶ func (s *Sigfox) Init(port string) func (*Sigfox) OpenPort ¶ func (s *Sigfox) OpenPort() func (*Sigfox) SendMessage ¶ func (s *Sigfox) SendMessage(message string) error func (*Sigfox) WaitFor ¶ func (s *Sigfox) WaitFor(success, failure string, timeOut int) error Source Files ¶ View all Source files snoc.go Click to show internal directories. Click to hide internal directories.