summaryrefslogtreecommitdiff
path: root/software/main.go
blob: dfc5de37690baf1040b231b0a487361f2618de16 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
package main

import (
	"log"

	"xengineering.eu/iot-core/communication"
)

func main() {
	iface, err := communication.NewSerialInterface()
	if err != nil {
		log.Fatal(err)
	}

	iface.Start()

	iface.Cat()
}