WT210 Reading from external sensor

Hi,
I need help with using external sensor to read current in LabVIEW. Are there any examples? What I did was, from the "Measure Mode Value" example, I connect Config Ext Sensor Scaling. I don't know if it's right or not.
Any help would be very appreciated.
Thanks,
Solved!
Go to Solution.

You can compare the commands that are in the function to the command in the manual. I haven't used that instrument.

Similar Messages

  • How to operate 3d model in adobe reader from external program

    Is it possible to operate 3d model with adobe reader from external program?
    Such as selecting a spefic node of 3d model and and highlighting it in adobe reader.
    Thanks a lot!

    Thanks Irosenth,
    One thing I am still not quite sure. Do you mean I can use "Acrobat 3D API" to create the plugin? But seems the  "Acrobat 3D API" only works with
    Acrobat Pro Extended. 
    That means the plugin will not be able to work with adobe reader. Is that correct?
    Or do you mean any other API which work with the reader?
    Thanks.

  • How do you direct EXS24 to read from External drive?

    my logic pro EXS24 is not reading from My external drive. How do i create a path??

    Hi Nastushka
    Glad you liked the website, it's my intention to keep updating over time and I hope people continue to find it useful. I was very lucky when I started out that lots of very smart people helped me out, so it's nice to continue the tradition.
    In answer to your question.
    To the best of my knowledge there's no way to have the actual .exs files on an external drive and have Logic still see them. My understanding is that Logic performs a number of "scans" on start up, during this process it checks a number of preset locations and then adds the files it finds to your available tools.
    The good news is that the .exs files are relatively small, so they shouldn't eat in to your hard drive space too much. It's the audio ( wav or aiff ) that takes up all the space.
    For example I have Pure E-Basses on my laptop ( from which I'm typing ) and the whole folder of .exs files is 6.5meg the related samples folder is 2.52gig.
    Ok, moving into speculative mode, _I haven't tried this myself_, if you absolutely must have the .exs files on an external drive I can think of no logical reason this couldn't be achieved with the judicious use of an Alias. So you'd create an Alias of the .exs files and put these in the correct location for Logic to scan and point these Aliases to the original files on your external HD.
    Unfortunately I'm not in a position to test this at the moment.
    Maybe somebody could chip in if they've tried it ?
    I'd also suggest that if you don't have enough room on you internal HD for the .exs files you may have bigger problems down the line. All HDs ( in my experience ) need a reasonable percentage of free space to work at their best.
    I'll copy this into the other thread, it may be sensible to continue this discussion in one thread from now on.
    James

  • Thread to read from external program

    Hello Fellows,
    Here it is, I'm trying to interact with other programs using Labview 8.0.
    I have read lots of messages on Active X and threads to understand a bit on that functionnalities and can't figure out if I could or not do my program.
    So image explains better than words, please look at the attached file to see my issue.
    Other question is about the the Open System Command Pipe.vi, read From Pipe.vi, Close Pipe.vi etc. Are these vi's able to create a vrtual COM port as a pipe ?
    And is this Vis available in LabVIEW 8.0 Full Dev ?
    Thanks for your reply....see you
    Attachments:
    ExplainPipe.jpg ‏41 KB

    Hi
    The Open System Command Pipe.vi, read From Pipe.vi, Close Pipe.vi etc are in Labview full but only linux and MAC OS version. You can not use pipe with Windows.
    Regards
    VéroniqueD
    NI France

  • Read from external source file in weblogic

    Hi,
    I am using Weblogic Server 10.3 in my project.
    In one of my modules , i have a requirement where I have to read the contents of a file from an external location.[ex: D:\Test\Sample.xml ].
    How to i configure this path in weblogic , so that I can read the content in my java source file.
    Please advice.
    Regards,
    Praveen

    only part i replied on was the part of how to read a file
    but i think in your case you could do the next
    use the sync file adapter to read in the file during your process
    based on this content you set a variable "myOutputDirectory"
    then create a file adapter (write) which will store the file on file system
    http://docs.oracle.com/cd/E23943_01/integration.1111/e10231/adptr_file.htm#CIACICFD
    4.3.2.2.5 Specifying a Dynamic Outbound File Name
    and use that (jca.file.Directory) property to store the file either on the archive location or the delete location

  • Reading from external XML source

    Hi all,
    I'm a noob at Flex but trying to learn.
    I encountered a problem that i can't seem to fix.
    I'm invoking an HTTPService like this:
    Header 1
    <mx:HTTPService id="searchName"url="
    {compexUrl}"result="searchHandler(event)"
    resultFormat = "
    e4x">
     <mx:request xmlns="">
     <api_key>xxxxxxxx</api_key>
     </mx:request></mx:HTTPService>
    Where compexUrl =
    http://test/ + platform + "/" + searchTerms;
    My searchHandler is like this:
    [Bindable] 
    public var item:XMLList = null; 
    private function searchHandler(event:ResultEvent):void{item=
    new XMLList(event.result);}
    And the xml returned has the following aspect:
    <?xml version="1.0" encoding="UTF-8" ?>
    - <games xmlns="http://api.gamesradar.com">
    - <game>
    <id>20060418113640115000</id>
    - <name>
    - <![CDATA[ God Hand ]]>
    </name>
    </game>
    - <game>
    <id>2005120717012468975830</id>
    - <name>
    - <![CDATA[ God of War ]]>
    </name>
    </game>
    - <game>
    <id>20070510133243896018</id>
    - <name>
    - <![CDATA[ God of War Betrayal [mobile] ]]>
    </name>
    </game>
    - <game>
    <id>20060313151238825080</id>
    - <name>
    - <![CDATA[ God of War II ]]>
    </name>
    </game>
    - <game>
    <id>2005120717012341705322</id>
    - <name>
    - <![CDATA[ GoDai Elemental Force ]]>
    </name>
    </game>
    - <game>
    <id>2005120717012453155517</id>
    - <name>
    - <![CDATA[ Godzilla Save The Earth ]]>
    </name>
    </game>
    - <game>
    <id>20070918144248206042</id>
    - <name>
    - <![CDATA[ Godzilla: Unleashed ]]>
    </name>
    </game>
    </games>
    I want to populate my var item with all the values of the tag name but i can´t seem to figure out how?
    Can you help me please?

    Hi thanks for your reply but thats not the answer, i've tried that already....
    My problem was that i had a namespace in my tags, aparently it changes the way we can access the attribute value
    <games xmlns="http://api.gamesradar.com">
    One way to deal with this namespace is to acces the variable like this:
    var ns:Namespace = new Namespace("http://api.gamesradar.com");
    item = XML(event.result).ns::game.*::name;
    After i solved this issue i stumble upon another one, i wanted to put those results in a dataGrid like this:
     <mx:DataGrid x="10" y="101" width="786" id="searchInfo" dataProvider="{item}">
    <mx:columns>
    <mx:DataGridColumn headerText="Título" dataField="name"/>
    <mx:DataGridColumn headerText="Identificador" dataField="id"/>
    </mx:columns>
    </mx:DataGrid>
    Well Flex doesn't let me do that so i followed another route.....i simply removed the namespace from my xml with this function:
     public function result(response:Object):XML{
    var xmlString:String;
    var xmlnsPattern:RegExp;
    var namespaceRemovedXML:String;
    var responseXML:XML;
    // get the XML payload
    if(ResultEvent(response).result is XMLList){response = ResultEvent(response).result
    as XMLList;}
    else{response = ResultEvent(response).result
    as XML;}
    // convert it to a stringxmlString = response.toXMLString();
    // define the regex pattern to remove the namespaces from the stringxmlnsPattern =
    new RegExp("xmlns[^\"]*\"[^\"]*\"", "gi");// remove the namespaces from the string representation of the XMLnamespaceRemovedXML = xmlString.replace(xmlnsPattern,
    // set the string rep. of the XML back to real XMLresponseXML =
    new XML(namespaceRemovedXML);
    return responseXML;}
    Finally my handler was working and putting the values in my dataGrid by changing it to:
    [Bindable]
    public var item:XMLList = null;
    private function searchHandler(event:ResultEvent):void{
    item=result(event).game;

  • Help w/reading from external NTFS hard drive

    Just bought my MacBook yesterday, and hooked up my ext. hard drive (NTFS) via USB. This HDD had been a backup & extra storage for my XP desktop. I was hoping I could have read access to the drive in order to copy music & pics to the Mac.
    When I power up the drive & connect the USB cable I get the following message: "The disk you inserted was not readable by this computer", and three options: Initialize, Ignore, and Eject. Under initialize I've tried both Verify Disk & Repair Disk, but no joy. Any ideas?
    Thanks for helping a new Switcher!

    Thanx warbirdx, that did the trick!

  • Windows Easy Transfer (WET) Issues with External Hard Drive - "Can't read from the source file or disk"

    I work for Office Depot, in the tech department. Basically, one of our associates was supposed to do a data backup, and re-install Windows 7, then transfer the files back. He used Windows Easy Transfer and compacted everything into a 163 GB file. 
    Now comes the hard part. When we try to put it back on his computer ((drag-and-drop to the desktop) which has been wiped back to factory settings using the recovery partition), it stops at 79.5 GB remaining (you know how it doesn't give you a % of completion,
    it just shows how many GB are remaining) and then says "Can't read from the source file or disk" and gives you an option to try again, or cancel. It gets hung up on the same point each time.
    Normally, this wouldn't be a huge issue, but the contents on the drive are his wife's architect blueprints and interior design stuff, along with wedding photos, etc, which are the only copies they have. On top of those, they have court documents and other
    important files that we are unable to access now.
    I wasn't involved with this transfer, so I'm trying to clean up the mess as best I can. I remembered that the customer's wife was Russian, and had some files typed with a Russian keyboard, so on and so forth. I wonder if that's the issue? If not, I really
    have no idea how to manually extract things from a ".mig" file, or how to diagnose what area is potentially corrupted.
    In light of this situation, we tried using "Recuva" to recover the files post-wipe, but everything was corrupted or unable to be opened, and it also extracted and recovered all of the "useless" photos, such as the skype logos, up and
    down arrows for browsers, etc (it was 160,000+ photos).
    Trying to avoid a potential lawsuit, unhappy customer, and costing the company lots of money to see if professionals can get into this external hard drive.
    Other relevant information:
    We used a Toshiba 500 GB (465 GB) external hard drive.
    Customer's computer is an HP Pavilion P6000 Series (Model No. p6520y) running Windows 7 Home Premium 64-bit Service Pack 1.
    Any other information that is needed can be provided, thanks in advance, and hopefully we can find a solution to this issue quickly!
    -John

    I think there's a lack of understanding somewhere.
    "If you even can't start the process, please unplug it from your new PC. Then head back to your new computer and plug
    the external drive back in to your new computer. "
    Unplug from new, head back to new, plug it back in? That doesn't make much sense! Haha.
    I knew what you meant though, somewhat. When I search through the drives after clicking yes (Has windows easy transfer
    already saved your files blah blah blah) I click on the transfer file and it says "Windows Easy Transfer could not open the file".
    Rather than drag-and-drop the file to the desktop, I now tried to double-click on the file itself while it was plugged
    into the computer. It opened, and it started transferring until it was about 70% completed, and then an error popped up saying "WET can't open the easy transfer file, make sure your USB device is plugged in or check your internet connection". 
    I checked, and the USB hard drive's light wasn't on. Now, I unplug it and plug it back in, and the light comes back on,
    so I click Retry, and it resets the bar back to nothing and says "Transfer time: 1 minute".
    Rather than continue trying, I clicked "Cancel" instead of Retry, and it says "Your transfer did not complete successfully."
    It says to click "view report" for more information, but there's no "view report button".
    At the moment, I am scanning the External Drive for bad sectors using the check disk tool in properties. It's frozen
    at "0 USN bytes processed".

  • Moving library to external hard drive and get the error "Copying files failed. The disk could not be read from or written to"

    Hello,
    I'm moving my library to an external hard drive.
    I've made sure to use the 'Keep iTunes Media Folder Organized' option when pointing to the new library location.
    I select 'File'->'Library'->'Organize Library', I select to 'Consolidate Files', click 'OK' and get ther error message "Copying files failed. The disk could not be read from or written to".
    I've read elsewhere that there may be a corrupted file that I need to sequester somehow and perhaps add it back however I'm not certain how I can locate that file because the status window doesn't indicate which file it's attempting to transfer when the error appears.
    Any tips?
    Thank you,
    Greg H
    iTunes 10.6.3

    OK I figured it out!
    It was a dodgy file....I sorted the file folders by date, and as it turned out within the "compilations" folder there was a CD where only about half the tracks seemed to have been copied over. Could not have identified this simply from the time indicated on the finder folder sort, because there were several CDs copied over in the that same minute.
    I went back to the original itunes folder, deleted all the files from that CD in itunes, then also deleted all those files from the original disk and the target disk.
    Tried the "consolidate library" again, and it completed nicely. 200megs of music and videos.
    Very happy to solve this problem after 3 weeks.

  • Why can't iTunes play music from read-only external hard drive?

    I have a write-protected external hard-drive which I keep all of my iTunes media on. iTunes recognizes all of the files, including the metadata on the id3 tags, and can find the files in Windows Explorer. However, it cannot play the files while the drive remains write-protected. Is there a work around for this as I would prefer to keep the hard-drive protected? Why does iTunes require write-access to play songs? Other media players have no problem playing from my read-only external hard-drive. Thanks for any help

    Welcome to the Apple Community.
    When you say you can't play through both devices at the same time, what happens when you try, are you able to select multiple speakers, do they deselect themselves, do you not get the option or does it just not work when you select multiple speakers.

  • Can't read iPhoto library from external drive

    I suddenly can't can't read iPhoto library from external drive. I have talked to WD and nohing is wrong with the network drive. I can open images and files from it. But, I can't read in iPhoto Library.

    Network Drive? a NAS?
    iPhoto needs to have the Library sitting on disk formatted Mac OS Extended (Journaled). Users with the Library sitting on disks otherwise formatted regularly report issues including, but not limited to, importing, exporting, saving edits and sharing the photos.
    Basically, you need to move the library to a correctly formatted disk.

  • How to read xml reports from external application

    Hi All,
    I want to generate reports from SIEBEL Database and access those reports from external application(like BlackBerry application). I have gone through by some blogs and found that we can access the generated reports from an external application using the URL.
    When I use this URL on browser it gives me the xml file of the report. But I am unable to read this file from the Blackberry application.
    Thanks in advance

    Hi Angha,
    I want to invoke other portal application from my application.
    Portal URL's also get changed from one system to Other. Prototype Portal->Development Portal -> Quality Portal->Production Portal>
    All the above Portal URL will be different.
    I want trigger another application dynamically.
    Thx & Rgds
    AW

  • Dynamic Internal Table for reading data from external file

    Hello All,
    The task was to create a internal table with dynamic columns,
    Actually this is my first task in the WebAS 6.20, my program is based on input file provided by user with certain effort. this file can have different effort for a one yr to five year frame..
    I needed to read the raw data from file, based on months create a internal table to hold the data, after this i need to validate the data...
    I have browsed thru dynamic internal table topic, but couldn't find any dynamic appending structure, the dynamic structure would contains 12 month fileds.
    can any one help me in getting my task completed..
    Thanks
    Kumar

    Hi,
    I see that you posted the same question a couple of days ago at Dynamic Internal Table for reading data from external file Didn't Charles's response address your problem?
    Regards

  • Reading CAN frames from 10 sensors Simultaneously

    Hello,
    I have developed a code that reads CAN data frame from the CAN port (PCI CAN/2 series 2 board). The board have 2 CAN ports. I have connected a sensor to one of the ports and reading the CAN frames using my code. I want to use the same code to read CAN frames from 1o sensors simultaneously. Can anyone help me? I have tried creating SUB VI of my code but it reads only one port at a time.    
    Thanks in advance
    Solved!
    Go to Solution.

    Hi Gruenberg,
    I have one question....in my code the while loop interates at 1000ms  i.e.  I want to read CAN data every second (1 value per sec). But when I log this data I see that it gives me 11 values per sec. Because of this my log file is getting very bigger unnnecessarily. I tried to figure it out but couldn't find any solution. Can you tell me why this is happening?
    Please see attached docs.
    Thanks in advance.
    Attachments:
    F2C.jpg ‏291 KB
    CAN0.txt ‏1 KB

  • Serial port communication to read from an inertail sensor from Analog Devices

    Hi, I have an Inertial Sensor ADIS16350 by Analog Devices. My motive is to read continuous data from the sensor. The sensor firmware has specific commands as follows:
    at wil return OK
    ra will read once from sensor
    ca will read continuously from sensor
    When I try this in the hyperterminal it all works fine.
    However I tried in labview the same method. However when I send any of this commands the front panel shows an Error message. Meaning if I send 'at' command, instead of returning 'OK' I get 'ERROR: 61-74-30-43-error' I believe this is an error sent by the sensor firmware. However just to test the system, I tried sending the 'continuous acquisition' command from my LABVIEW program, close LabVIEW, Open Hyperterminal. To see the data is being received at the Hyperterminal.
    Has anyone come acroos such a situation? Your feedback is greatly appreciated.
    Thankyou!
    Chathuri 
    Solved!
    Go to Solution.

    Chathuri,
    Suggest you try using NISpy to monitor the port.  With NISpy running, use Hyperterminal to send command.  Shut down Hyperterminal to free up the port and try your LV vi.  Now you can look at the NISpy log and compare what the two programs are doing.

Maybe you are looking for

  • I cannot send email from iPhone -- my account is with aol

    I tried to send an email to myself and I got a message that said "Cannot Send Mail the sender address (my address) was rejected by the server". It says that no matter who I send mail to. I am not very technically oriented -- so if someone answers me

  • My ipod mini is not identified by my computer anymore

    my laptop crashed while my ipod mini was charging and being updated by itunes 7. i switched the computer off while the ipod was still pugged into the computer via usb port. i switched my computer back on. however, my laptop is working perfectly, by m

  • Wirreless connection to a printer

    I upgraded recently to BT Infinity but have found that I cannot establish a wireless connection between my Samsung printer and my laptop. Before upgrading I had no problems and the printer works perfectly now with a USB lead connection. I have tried

  • APPLE TV - Collection Display

    This is a suggestion/request. *admin - Please re-post if in incorrect forum. I would just like to see my movie collection on my AppleTV displayed the same as the titles are on the itunes store. A list of the Movie Cover Art, instead of this list of t

  • Forwarding agent not determined

    Hi i have an issue where the forwarding agent is not determined in the order automatically . The forwrading agent is available in route of the order item . but still it is not copied ? what could be the reason ? regards, ganesh