From a3cd2d22240623da49d768bbae96d350f668afe7 Mon Sep 17 00:00:00 2001 From: David Lopez Date: Wed, 9 Sep 2020 11:40:45 -0600 Subject: [PATCH] Updated getAIN source doc and its example. Updated README date for release. --- README | 2 +- src/u6.py | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README b/README index f9c42ed..bab5151 100644 --- a/README +++ b/README @@ -1,6 +1,6 @@ LabJackPython: Cross-platform (Windows, Linux, Mac OS X) Python modules and examples for the LabJack U3, U6, UE9 and U12. -01/23/2019 +09/09/2020 support@labjack.com LabJackPython requires Python 2.6, 2.7 or 3.x. Please report bugs to diff --git a/src/u6.py b/src/u6.py index 46fbec4..9cfa893 100644 --- a/src/u6.py +++ b/src/u6.py @@ -1497,8 +1497,8 @@ def getAIN(self, positiveChannel, resolutionIndex=0, gainIndex=0, settlingFactor channel is positiveChannel+1. Desc: Reads an AIN and applies the calibration constants to it. - >>> myU6.getAIN(14) - 299.87723471224308 + >>> myU6.getAIN(0) + 10.109889201523673 """ result = self.getFeedback(AIN24AR(positiveChannel, resolutionIndex, gainIndex, settlingFactor, differential))