0.0
No commit activity in last 3 years
No release in over 3 years
Ruby client for the Thermo Scientific VisionMate 2D Scanner.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

~> 1.5
>= 0
~> 2.13
>= 0
 Project Readme

Build Status Code Climate

VisionMate

VisionMate provides a Ruby interface to the Thermo Scientific VisionMate 2D barcode scanner used to bulk scan multiple test tubes set in a rack. The library provides a wrapper around the Telnet interface used by the VisionMate scanner.

Workflow Example

Installation

Add it to the project's Gemfile with:

gem 'vision_mate'

Run the bundle command to install it.

Usage

Configure the connection in an initializer file. e.g. config/initializers/vision_mate.rb

  VisionMate.configure do |config|
    config.host = '192.168.1.1'
    config.port = '8000'
  end

Initialize a connection and perform a scan.

  scanner = VisionMate.connect
  scanner.scan # => (results)

Contributing

  1. Fork this repository ( http://github.com/SciMed/vision_mate/fork )
  2. Create your feature branch (git checkout -b my-new-feature)
  3. Commit your changes (git commit -am 'Add some feature')
  4. Push to the branch (git push origin my-new-feature)
  5. Create a new Pull Request

Copyright

Copyright (c) 2014 SciMed Solutions Inc. Licensed under the MIT license. See LICENSE for details.