Skip to content

northvolt/go-kd6rmx

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

46 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

go-kd6rmx

Go language command interface to the Mitsubishi Electric KD-MX series of contact image sensors.

http://www.mitsubishielectric.com/bu/contact_image/general/lineup/index.html

For information about this sensor contact Mitsubishi Electric.

API

The API is meant to be used in Go programs. You would normally add it to your own project using Go modules like this:

go get github.com/northvolt/go-kd6rmx
import "github.com/northvolt/go-kd6rmx"

...

// initialize sensor
cis := kd6rmx.Sensor{Port: "/dev/your-port-here"}

// load settings from user preset 1
return cis.LoadSettings(1)

// change some values 
cis.PixelOverlap(true)
cis.PixelInterpolation(true)
cis.PixelResolution(600)

// save current settings to user preset 2
cis.SaveSettings(2)

CLI

kd6ctl is a command line interface tool to allow for user configuration.

How to install

First you must obtain the git repo, and change into the new directory:

git clone https://github.com/northvolt/go-kd6rmx.git
cd go-kd6rmx

Now you can install the CLI

go install ./cmd/kd6ctl

How to use

kd6ctl --help

Will output a list of commands:

USAGE
  kd6ctl [flags] <subcommand>

SUBCOMMANDS
  version        Show version of kd6ctl API.
  dumpreg        Dump the register values of CIS.
  gain           Enables the gain control and sets the specified value 
  load           Load user settings.
  save           Save current settings into a user preset.
  pattern        Decide test pattern.
  frequency      Change output frequency (in Mhz).
  format         Change output format.
  interpolation  Set interpolation on/off.
  dark           Dark correction on/off/adjust.
  white          White correction on/off/adjust/target.
  led            Turn sensor LEDs on or off.
  duty           Set LED duty illumination period register value. Valid range 0 to 4095.
  illum          Set effective LED illumination period register value. Valid range 0 to 4095.
  cmd            Sends the specified command to sensor

FLAGS
  -log=false                     turn on debug logging
  -p /dev/corser/XtiumCLMX41_s0  port of KD6RMX sensor to use

How to set params:

kd6ctl frequency 60.0
kd6ctl format 10 serial base
kd6ctl interpolation on
kd6ctl dark on
kd6ctl white on
kd6ctl led ab on

How to build binaries for different platforms

Windows (amd64 architecture)

make build-windows

Linux (amd64 architecture)

make build-linux

macOS (amd64 architecture)

make build-macos

macOS - M1 (arm64 architecture)

make build-macos-m1

All of above

make build-all

build for the current platform (if you're unsure about the OS and architecture)

make build

Generic build command

build binaries for other Operating Systems and architectures

env GOOS=<OS> GOARCH=<ARCH> go build -o build/kd6ctl-<OS>-<ARCH> ./cmd/kd6ctl

replace the OS by operating system and ARCH by architecture supported by go cross-compiler.

How to release a tagged version

Following commands build binaries for Windows (amd64), Linux (amd64), macOS (amd64) and macOS M1 (arm64).

Bump release tag to minor

make release bump=minor

Bump relase tag to major

make release bump=major

if bump argument is not mentiond, then the release will be bumped with tag patch

make release

About

Go language command interface to Mitsubishi Electric KD-MX contact image sensors

Resources

License

Stars

Watchers

Forks

Packages

No packages published