7
8

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

goでwindowsでRS232C

Posted at

## インストール
go get github.com/ohisama/serial
## 画像
serial.PNG

サンプルコード

package main
import (
	"bufio"
	"fmt"
	"github.com/ohisama/serial"
	"os"
)
func main() {
	device := "COM5"
	baud := 9600
	fmt.Println("open", device, "at", baud)
	port, err := serial.Open(device, baud)
	if err != nil {
		fmt.Println("open failed:", err)
		return
	}
	defer port.Close()
	fmt.Println("ready")
	scanner := bufio.NewScanner(os.Stdin)
	buf := make([]byte, 100)
	for scanner.Scan() {
		n, err := port.Write([]byte(scanner.Text() + "\r"))
		if err != nil {
			fmt.Println("serial write error:", err)
		}
		fmt.Println("Sent -> ", n)
		n, err = port.Read(buf)
		if err != nil {
			fmt.Println("serial read error:", err)
			break
		}
		fmt.Println(n, "-> read ", string(buf[:n]))
	}
}

7
8
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
7
8

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?