Skip to main content

ADAM 6050-D REST API Implementation

Documentation Status Tests Publish

image

ADAM 6000-Series Manual

6050-D has 12 digital inputs and 6 digital outputs. It can be controlled with http requests. The aim of this repo is to wrap the ADAM API into a convenience module for Event Gates' deep learning platform VIS.

Installation

pip install adam-io

Usage Examples

You can update output state in three steps;

  • Create the ADAM object
  • Create/reuse DigitalOutput
  • Call ADAM’s output method with DigitalOutput

Read the input state;

  • Call ADAM’s input method

Create adam object

IP, username, password of ADAM should be already set from APEX

from adam import ADAM6050D as ADAM

ip='192.168.1.1'
username = 'user'
password = 'pass'

adam = ADAM(ip, username, password)

Construct the digital output object

To change the state of the outputs, you should create/reuse a DigitalOutput object After creating the object, the initial state is empty, so making a request straight away changes nothing.

from digital_io import DigitalOutput

do = DigitalOutput()
# set every available output to 1
do[0]=1
do[1]=1
do[2]=1
do[3]=1
do[4]=1
do[5]=1

You don’t have to set every bit, you can just change the ones you need.

from digital_io import DigitalOutput

do = DigitalOutput()
# set DO0 to 1 and DO5 to 0
do[0]=1
do[5]=0

DigitalOutput accepts an array to set the outputs all at once

from digital_io import DigitalOutput

# set every available output to 1
initial_array = [1,1,1,1,1,1,1]
do = DigitalOutput(array=initial_array)

Change the state

After creating adam and setting the digital outputs, make the request by calling the output method of ADAM and pass the digitalOuput object as argument.

from adam import ADAM6050D as ADAM
from digital_io import DigitalOutput

ip='192.168.1.1'
username = 'user'
password = 'pass'

adam = ADAM(ip, username, password)

do = DigitalOutput()
# set DO0 to 1 and DO5 to 0
do[0]=1
do[5]=0

# request the state change
try:
    adam.output(do)
except Exception as err:
    print(err)

Read the state of output

You can get the current state by calling the digitalOutput object without an argument

current_output = adam.output()

# state of DO0
current_output[0]

Read the state of input

To read the input state, call input() on ADAM. You can pass in the id of a specific input if you want. Otherwise every input value is retrieved

input_id = 0
di_0 = adam.input(input_id)

# value of DI0
print(di_0)

di = adam.input(input_id)

# digital inputs
print(di[0]) # DI0
print(di[1]) # DI1
#
#
#
print(di[10]) # DI10
print(di[11]) # DI11

LICENSE

MIT License

Copyright (c) 2020 Event Gates

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the “Software”), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

Release files for adam-io 1.1170.1827

For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.

Source distribution (sdist)

Source distribution for adam-io 1.1170.1827
File Size Uploaded
adam_io-1.1170.1827.tar.gz 6.3 kB Details

Built distribution (wheel)

Table of built distributions (wheels) for adam-io 1.1170.1827
File Interpreter ABI Platform
adam_io-1.1170.1827-py3-none-any.whl Python 3 none any Details

Total release size:14.8 kB

Release files / adam_io-1.1170.1827.tar.gz

Download URL adam_io-1.1170.1827.tar.gz
Size 6.3 kB
Tags Source
SHA-256 checksum
How to use checksums
6fc8000e5c026bddb1ea864cc27d983ccaee64fbe6f16dd45b33b7ea75bf9bcc
BLAKE2b-256 checksum
How to use checksums
466fa4092c0a8cf796e20ec65f1f7e43f3b8dc4f0896dfe492b12cfa887b57a4
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.2.0 pkginfo/1.6.1 requests/2.25.1 setuptools/40.6.2 requests-toolbelt/0.9.1 tqdm/4.54.1 CPython/3.6.12

Release files / adam_io-1.1170.1827-py3-none-any.whl

Download URL adam_io-1.1170.1827-py3-none-any.whl
Size 8.4 kB
Tags Python 3
SHA-256 checksum
How to use checksums
60198b82dd0f275baf519ba67f39de68ffd82cc43d7056cb100b58c4683bea85
BLAKE2b-256 checksum
How to use checksums
1d799404a560fa85af1f1bb3f93e3c85acfbd53f0482a43e0c3af311a03241a2
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.2.0 pkginfo/1.6.1 requests/2.25.1 setuptools/40.6.2 requests-toolbelt/0.9.1 tqdm/4.54.1 CPython/3.6.12
Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page