Skip to content

Latest commit

 

History

History
22 lines (15 loc) · 393 Bytes

README.md

File metadata and controls

22 lines (15 loc) · 393 Bytes

Deprecated. Use go-fanuc instead.

comtool

Set fanuc data comments via the controller KAREL ComSet tool.

Usage

package main

import (
	"fmt"

	"github.com/onerobotics/comtool"
)

func main() {
	err := comtool.Set(comtool.NUMREG, 1, "test", "127.0.0.101")
	if err != nil {
		fmt.Println(err)
	}
}