/* *********************************************************** * This file was automatically generated on 2016-02-10. * * * * JavaScript Bindings Version 2.0.8 * * * * If you have a bugfix for this file and want to commit it, * * please fix the bug in the generator. You can find a link * * to the generators git repository on tinkerforge.com * *************************************************************/ var Device = require('./Device'); BrickletRotaryPoti.DEVICE_IDENTIFIER = 215; BrickletRotaryPoti.DEVICE_DISPLAY_NAME = 'Rotary Poti Bricklet'; BrickletRotaryPoti.CALLBACK_POSITION = 13; BrickletRotaryPoti.CALLBACK_ANALOG_VALUE = 14; BrickletRotaryPoti.CALLBACK_POSITION_REACHED = 15; BrickletRotaryPoti.CALLBACK_ANALOG_VALUE_REACHED = 16; BrickletRotaryPoti.FUNCTION_GET_POSITION = 1; BrickletRotaryPoti.FUNCTION_GET_ANALOG_VALUE = 2; BrickletRotaryPoti.FUNCTION_SET_POSITION_CALLBACK_PERIOD = 3; BrickletRotaryPoti.FUNCTION_GET_POSITION_CALLBACK_PERIOD = 4; BrickletRotaryPoti.FUNCTION_SET_ANALOG_VALUE_CALLBACK_PERIOD = 5; BrickletRotaryPoti.FUNCTION_GET_ANALOG_VALUE_CALLBACK_PERIOD = 6; BrickletRotaryPoti.FUNCTION_SET_POSITION_CALLBACK_THRESHOLD = 7; BrickletRotaryPoti.FUNCTION_GET_POSITION_CALLBACK_THRESHOLD = 8; BrickletRotaryPoti.FUNCTION_SET_ANALOG_VALUE_CALLBACK_THRESHOLD = 9; BrickletRotaryPoti.FUNCTION_GET_ANALOG_VALUE_CALLBACK_THRESHOLD = 10; BrickletRotaryPoti.FUNCTION_SET_DEBOUNCE_PERIOD = 11; BrickletRotaryPoti.FUNCTION_GET_DEBOUNCE_PERIOD = 12; BrickletRotaryPoti.FUNCTION_GET_IDENTITY = 255; BrickletRotaryPoti.THRESHOLD_OPTION_OFF = 'x'; BrickletRotaryPoti.THRESHOLD_OPTION_OUTSIDE = 'o'; BrickletRotaryPoti.THRESHOLD_OPTION_INSIDE = 'i'; BrickletRotaryPoti.THRESHOLD_OPTION_SMALLER = '<'; BrickletRotaryPoti.THRESHOLD_OPTION_GREATER = '>'; function BrickletRotaryPoti(uid, ipcon) { //300° rotary potentiometer /* Creates an object with the unique device ID *uid* and adds it to the IP Connection *ipcon*. */ Device.call(this, this, uid, ipcon); BrickletRotaryPoti.prototype = Object.create(Device); this.responseExpected = {}; this.callbackFormats = {}; this.APIVersion = [2, 0, 0]; this.responseExpected[BrickletRotaryPoti.FUNCTION_GET_POSITION] = Device.RESPONSE_EXPECTED_ALWAYS_TRUE; this.responseExpected[BrickletRotaryPoti.FUNCTION_GET_ANALOG_VALUE] = Device.RESPONSE_EXPECTED_ALWAYS_TRUE; this.responseExpected[BrickletRotaryPoti.FUNCTION_SET_POSITION_CALLBACK_PERIOD] = Device.RESPONSE_EXPECTED_TRUE; this.responseExpected[BrickletRotaryPoti.FUNCTION_GET_POSITION_CALLBACK_PERIOD] = Device.RESPONSE_EXPECTED_ALWAYS_TRUE; this.responseExpected[BrickletRotaryPoti.FUNCTION_SET_ANALOG_VALUE_CALLBACK_PERIOD] = Device.RESPONSE_EXPECTED_TRUE; this.responseExpected[BrickletRotaryPoti.FUNCTION_GET_ANALOG_VALUE_CALLBACK_PERIOD] = Device.RESPONSE_EXPECTED_ALWAYS_TRUE; this.responseExpected[BrickletRotaryPoti.FUNCTION_SET_POSITION_CALLBACK_THRESHOLD] = Device.RESPONSE_EXPECTED_TRUE; this.responseExpected[BrickletRotaryPoti.FUNCTION_GET_POSITION_CALLBACK_THRESHOLD] = Device.RESPONSE_EXPECTED_ALWAYS_TRUE; this.responseExpected[BrickletRotaryPoti.FUNCTION_SET_ANALOG_VALUE_CALLBACK_THRESHOLD] = Device.RESPONSE_EXPECTED_TRUE; this.responseExpected[BrickletRotaryPoti.FUNCTION_GET_ANALOG_VALUE_CALLBACK_THRESHOLD] = Device.RESPONSE_EXPECTED_ALWAYS_TRUE; this.responseExpected[BrickletRotaryPoti.FUNCTION_SET_DEBOUNCE_PERIOD] = Device.RESPONSE_EXPECTED_TRUE; this.responseExpected[BrickletRotaryPoti.FUNCTION_GET_DEBOUNCE_PERIOD] = Device.RESPONSE_EXPECTED_ALWAYS_TRUE; this.responseExpected[BrickletRotaryPoti.CALLBACK_POSITION] = Device.RESPONSE_EXPECTED_ALWAYS_FALSE; this.responseExpected[BrickletRotaryPoti.CALLBACK_ANALOG_VALUE] = Device.RESPONSE_EXPECTED_ALWAYS_FALSE; this.responseExpected[BrickletRotaryPoti.CALLBACK_POSITION_REACHED] = Device.RESPONSE_EXPECTED_ALWAYS_FALSE; this.responseExpected[BrickletRotaryPoti.CALLBACK_ANALOG_VALUE_REACHED] = Device.RESPONSE_EXPECTED_ALWAYS_FALSE; this.responseExpected[BrickletRotaryPoti.FUNCTION_GET_IDENTITY] = Device.RESPONSE_EXPECTED_ALWAYS_TRUE; this.callbackFormats[BrickletRotaryPoti.CALLBACK_POSITION] = 'h'; this.callbackFormats[BrickletRotaryPoti.CALLBACK_ANALOG_VALUE] = 'H'; this.callbackFormats[BrickletRotaryPoti.CALLBACK_POSITION_REACHED] = 'h'; this.callbackFormats[BrickletRotaryPoti.CALLBACK_ANALOG_VALUE_REACHED] = 'H'; this.getPosition = function(returnCallback, errorCallback) { /* Returns the position of the Rotary Potentiometer. The value is in degree and between -150° (turned left) and 150° (turned right). If you want to get the position periodically, it is recommended to use the callback :func:`Position` and set the period with :func:`SetPositionCallbackPeriod`. */ this.ipcon.sendRequest(this, BrickletRotaryPoti.FUNCTION_GET_POSITION, [], '', 'h', returnCallback, errorCallback); }; this.getAnalogValue = function(returnCallback, errorCallback) { /* Returns the value as read by a 12-bit analog-to-digital converter. The value is between 0 and 4095. .. note:: The value returned by :func:`GetPosition` is averaged over several samples to yield less noise, while :func:`GetAnalogValue` gives back raw unfiltered analog values. The only reason to use :func:`GetAnalogValue` is, if you need the full resolution of the analog-to-digital converter. If you want the analog value periodically, it is recommended to use the callback :func:`AnalogValue` and set the period with :func:`SetAnalogValueCallbackPeriod`. */ this.ipcon.sendRequest(this, BrickletRotaryPoti.FUNCTION_GET_ANALOG_VALUE, [], '', 'H', returnCallback, errorCallback); }; this.setPositionCallbackPeriod = function(period, returnCallback, errorCallback) { /* Sets the period in ms with which the :func:`Position` callback is triggered periodically. A value of 0 turns the callback off. :func:`Position` is only triggered if the position has changed since the last triggering. The default value is 0. */ this.ipcon.sendRequest(this, BrickletRotaryPoti.FUNCTION_SET_POSITION_CALLBACK_PERIOD, [period], 'I', '', returnCallback, errorCallback); }; this.getPositionCallbackPeriod = function(returnCallback, errorCallback) { /* Returns the period as set by :func:`SetPositionCallbackPeriod`. */ this.ipcon.sendRequest(this, BrickletRotaryPoti.FUNCTION_GET_POSITION_CALLBACK_PERIOD, [], '', 'I', returnCallback, errorCallback); }; this.setAnalogValueCallbackPeriod = function(period, returnCallback, errorCallback) { /* Sets the period in ms with which the :func:`AnalogValue` callback is triggered periodically. A value of 0 turns the callback off. :func:`AnalogValue` is only triggered if the analog value has changed since the last triggering. The default value is 0. */ this.ipcon.sendRequest(this, BrickletRotaryPoti.FUNCTION_SET_ANALOG_VALUE_CALLBACK_PERIOD, [period], 'I', '', returnCallback, errorCallback); }; this.getAnalogValueCallbackPeriod = function(returnCallback, errorCallback) { /* Returns the period as set by :func:`SetAnalogValueCallbackPeriod`. */ this.ipcon.sendRequest(this, BrickletRotaryPoti.FUNCTION_GET_ANALOG_VALUE_CALLBACK_PERIOD, [], '', 'I', returnCallback, errorCallback); }; this.setPositionCallbackThreshold = function(option, min, max, returnCallback, errorCallback) { /* Sets the thresholds for the :func:`PositionReached` callback. The following options are possible: .. csv-table:: :header: "Option", "Description" :widths: 10, 100 "'x'", "Callback is turned off" "'o'", "Callback is triggered when the position is *outside* the min and max values" "'i'", "Callback is triggered when the position is *inside* the min and max values" "'<'", "Callback is triggered when the position is smaller than the min value (max is ignored)" "'>'", "Callback is triggered when the position is greater than the min value (max is ignored)" The default value is ('x', 0, 0). */ this.ipcon.sendRequest(this, BrickletRotaryPoti.FUNCTION_SET_POSITION_CALLBACK_THRESHOLD, [option, min, max], 'c h h', '', returnCallback, errorCallback); }; this.getPositionCallbackThreshold = function(returnCallback, errorCallback) { /* Returns the threshold as set by :func:`SetPositionCallbackThreshold`. */ this.ipcon.sendRequest(this, BrickletRotaryPoti.FUNCTION_GET_POSITION_CALLBACK_THRESHOLD, [], '', 'c h h', returnCallback, errorCallback); }; this.setAnalogValueCallbackThreshold = function(option, min, max, returnCallback, errorCallback) { /* Sets the thresholds for the :func:`AnalogValueReached` callback. The following options are possible: .. csv-table:: :header: "Option", "Description" :widths: 10, 100 "'x'", "Callback is turned off" "'o'", "Callback is triggered when the analog value is *outside* the min and max values" "'i'", "Callback is triggered when the analog value is *inside* the min and max values" "'<'", "Callback is triggered when the analog value is smaller than the min value (max is ignored)" "'>'", "Callback is triggered when the analog value is greater than the min value (max is ignored)" The default value is ('x', 0, 0). */ this.ipcon.sendRequest(this, BrickletRotaryPoti.FUNCTION_SET_ANALOG_VALUE_CALLBACK_THRESHOLD, [option, min, max], 'c H H', '', returnCallback, errorCallback); }; this.getAnalogValueCallbackThreshold = function(returnCallback, errorCallback) { /* Returns the threshold as set by :func:`SetAnalogValueCallbackThreshold`. */ this.ipcon.sendRequest(this, BrickletRotaryPoti.FUNCTION_GET_ANALOG_VALUE_CALLBACK_THRESHOLD, [], '', 'c H H', returnCallback, errorCallback); }; this.setDebouncePeriod = function(debounce, returnCallback, errorCallback) { /* Sets the period in ms with which the threshold callbacks * :func:`PositionReached`, * :func:`AnalogValueReached` are triggered, if the thresholds * :func:`SetPositionCallbackThreshold`, * :func:`SetAnalogValueCallbackThreshold` keep being reached. The default value is 100. */ this.ipcon.sendRequest(this, BrickletRotaryPoti.FUNCTION_SET_DEBOUNCE_PERIOD, [debounce], 'I', '', returnCallback, errorCallback); }; this.getDebouncePeriod = function(returnCallback, errorCallback) { /* Returns the debounce period as set by :func:`SetDebouncePeriod`. */ this.ipcon.sendRequest(this, BrickletRotaryPoti.FUNCTION_GET_DEBOUNCE_PERIOD, [], '', 'I', returnCallback, errorCallback); }; this.getIdentity = function(returnCallback, errorCallback) { /* Returns the UID, the UID where the Bricklet is connected to, the position, the hardware and firmware version as well as the device identifier. The position can be 'a', 'b', 'c' or 'd'. The device identifier numbers can be found :ref:`here `. |device_identifier_constant| */ this.ipcon.sendRequest(this, BrickletRotaryPoti.FUNCTION_GET_IDENTITY, [], '', 's8 s8 c B3 B3 H', returnCallback, errorCallback); }; } module.exports = BrickletRotaryPoti;