I need to monitor a transducer block parameter and save it to a CSV file.

How can I monitor a transducer block parameter and save it to a CSV file?  The reason is that I need to do some long-term testing of an FFb device we are developing, and I need to read the primary output parameter of the transducer block (not the scheduled AI block) every second or two and save to a CSV file.
I have tried to figure out a way to do that with FBUS Configurator, unsuccessfully, and I purchased FBUS Monitor, as that was recommended by an industry expert, but I have been unsuccessful at getting that to work as well.

Hi Wpinson,
Neither FBUS Configurator nor Monitor can meet your requirement. However, there are other approaches. NI-FBUS provides APIs for C, LabVIEW, VB and C#. You can use these APIs to read a parameter value of any block and use standard file IO functions to save the date into CSV file. The LabVIEW APIs are highly recommended because they are easy-to-use and LabVIEW also provides APIs for CSV file operations. You can build the application w/ LabVIEW in a short time.
You can find the examples of the FBUS APIs in the following folders:
1. C: C:\Program Files\National Instruments\NI-FBUS\MS Visual C\examples
2. VB: C:\Program Files\National Instruments\NI-FBUS\MS Visual Basic\example
3. C#: C:\Program Files\National Instruments\NI-FBUS\MS .NET\examples\CsharpExample
4. LabVIEW: search "fieldbus" in the LabVIEW example finder.

Similar Messages

  • How export to csv work in safari browser? In my application export to csv open like a raw data in new tab. But other browsers working great!. Need to open in a csv file or save it as a csv file.

    How export to csv work in safari browser?
    In my application export to csv open like a raw data in new tab.
    But other browsers working great!.
    Need to open in a csv file or save it as a csv file.
    Please suggest me. Thank you in advance!.

    Hi Adrian,
    Why don't you try any another software for opening CSV files then Notepad ? According to my experience, you can use these softwares to open an CSV files and they are:-
    Microsoft Excel
    Open Office Calc
    Google Docs
    Also there is an additional tool available known as CSV viewer. You may try this, download it from here http://www.csvviewer.com/
    I've never used Notepad for opening CSV files, because sometimes it contains some symbols which are not not at all compatibile with Notepad.
    Please remember to click “Mark as Answer” on the post that helps you, and to click “Unmark as Answer” if a marked post does not actually answer your question. This can be beneficial to other community members reading the thread.

  • Need someone on PC to open and save Pro 1.5 project file in CS3

    I am trying to salvage one of my old project files from when i worked on a PC. i can't do this because CS3 for Mac won't import old PC project files.
    If anyone would be so kind as to accept my small project file and save it in Premiere Pro CS3 on their PC i would be much obliged.
    -Dave

    theaveragedave,
    On the Mac, the Project file will *usually* appear without any file extension. Instead there will be one, or more, "helper/locator" files. These will usually be the filename, but with "._" (or similar) prepended to it. These are of no use to a PC.
    All that I did was Copy the Project files to a new folder, and in it, added the ".prproj" extension. All opened fine. (Actually, since this was a pre-Pro version, I think that I added ".proj," but you would use ".prproj.")
    If I were going to "convert" the Project, I'd gather up all Assets, keeping the folder structure exactly the same. Gather up the Project files (renaming, as is necessary), and furnish all of this to the person doing the conversion. This *should* keep your Asset Links working*. The other option would be to just convert the Project file, but then you will have to manually re-Link every Asset. If one gets lucky, and the Assets are stored in one folder, PP *might* be able to have you locate the first missing Asset, and then automatically locate the rest. I hesitate on this last comment, because you will have converted the Project, so things do not always work 100% the way they would otherwise. I had to do a lot of re-Linking, but I was jumping several versions and from Mac to PC. Still, once the Assets were re-Linked, all has worked perfectly.
    Good luck finding a PC operator with CS3. Should not be that hard. Wish I could help you more, but CS2 won't cut it, for what you need to do.
    Hunt
    * Keeping the drive letter the same will be a big step to keeping your links. Let's say that you are working on your D:\ drive (sure that Mac would call it something else), and you copy over to an external. I'd have the PC operator copy the Assets (with folder structure) to their D:\, just to keep the Links. Does this make sense?
    PS one little consideration is Mac's not using NTSF HDDs and the file size limitation of Fat-32 HDDs. However, you already have your Project and its Assets on a Mac, so this is probably moot.

  • Urgent : Need help in parsing XML from Sharepoint and save it into DB

    Hi ,
    I am Sharepoint guy and a newbie in Oracle . PL/SQL
    I am using UTL_DBWS Package to call a Sharepoint WebService " and was sucessfull , Now the xml has to be parsed and stored into a Table. I am facing the issue as the XML has a different namesoace and normal XPATH query is not working
    Below is the XML and need help in parsing it
    declare
    responsexml sys.XMLTYPE;
    testparsexml sys.XMLTYPE;
    begin
    responsexml := sys.XMLTYPE('<GetListItemsResponse xmlns="http://schemas.microsoft.com/sharepoint/soap/">
    <GetListItemsResult>
    <listitems xmlns:s="uuid:BDC6E3F0-6DA3-11d1-A2A3-00AA00C14882" xmlns:dt="uuid:C2F41010-65B3-11d1-A29F-00AA00C14882" xmlns:rs="urn:schemas-microsoft-com:rowset" xmlns:z="#RowsetSchema">
    <rs:data ItemCount="2">
    <z:row ows_MetaInfo="1;#" ows__ModerationStatus="0" ows__Level="1" ows_Title="Test Title 1" ows_ID="1" ows_owshiddenversion="1" ows_UniqueId="1;#{9C45D54E-150E-4509-B59A-DB5A1B97E034}" ows_FSObjType="1;#0" ows_Created="2009-09-12 17:13:16" ows_FileRef="1;#Lists/Tasks/1_.000"/>
    <z:row ows_MetaInfo="2;#" ows__ModerationStatus="0" ows__Level="1" ows_Title="Testing Tasks" ows_ID="2" ows_owshiddenversion="1" ows_UniqueId="2;#{8942E211-460B-422A-B1AD-1347F062114A}" ows_FSObjType="2;#0" ows_Created="2010-02-14 16:44:40" ows_FileRef="2;#Lists/Tasks/2_.000"/>
    </rs:data>
    </listitems>
    </GetListItemsResult>
    </GetListItemsResponse>');
    testparsexml := responsexml.extract('/GetListItemsResponse/GetListItemsResult/listitems/rs:data/z:row/@ows_Title');
    DBMS_OUTPUT.PUT_LINE(testparsexml.extract('/').getstringval());
    end;
    The issue is with rs:data , z:row nodes.... please suggest how to handle these kind of namespaces in Oracle
    I need the parse the attribute "ows_Title" and save it into a DB
    this script would generate "Error occured in XML Parsing"
    Help is appriciated, thanks for looking

    SQL> SELECT *
      FROM XMLTABLE (
              xmlnamespaces ('http://schemas.microsoft.com/sharepoint/soap/' as "soap",
                             '#RowsetSchema' AS "z"
              'for $i in //soap:*//z:row return $i'
              PASSING xmltype (
                         '<GetListItemsResponse xmlns="http://schemas.microsoft.com/sharepoint/soap/">
    <GetListItemsResult>
    <listitems xmlns:s="uuid:BDC6E3F0-6DA3-11d1-A2A3-00AA00C14882" xmlns:dt="uuid:C2F41010-65B3-11d1-A29F-00AA00C14882" xmlns:rs="urn:schemas-microsoft-com:rowset" xmlns:z="#RowsetSchema">
    <rs:data ItemCount="2">
    <z:row ows_MetaInfo="1;#" ows__ModerationStatus="0" ows__Level="1" ows_Title="Test Title 1" ows_ID="1" ows_owshiddenversion="1" ows_UniqueId="1;#{9C45D54E-150E-4509-B59A-DB5A1B97E034}" ows_FSObjType="1;#0" ows_Created="2009-09-12 17:13:16" ows_FileRef="1;#Lists/Tasks/1_.000"/>
    <z:row ows_MetaInfo="2;#" ows__ModerationStatus="0" ows__Level="1" ows_Title="Testing Tasks" ows_ID="2" ows_owshiddenversion="1" ows_UniqueId="2;#{8942E211-460B-422A-B1AD-1347F062114A}" ows_FSObjType="2;#0" ows_Created="2010-02-14 16:44:40" ows_FileRef="2;#Lists/Tasks/2_.000"/>
    </rs:data>
    </listitems>
    </GetListItemsResult>
    </GetListItemsResponse>')
    columns ows_MetaInfo varchar2(20) path '@ows_MetaInfo',
             ows_Title varchar2(20) path '@ows_Title',
             ows__ModerationStatus varchar2(20) path '@ows__ModerationStatus'
    OWS_METAINFO         OWS_TITLE            OWS__MODERATIONSTATUS
    1;#                  Test Title 1         0                   
    2;#                  Testing Tasks        0                   
    2 rows selected.

  • What do I need to do so I can send and save my photos ?  Do I need a specific jpeg app?

    What do I need to send and save my photos in adobe photo touch?  Do I need a specific jpeg app?

    You don't need a specific app. As soon you have saved your document (-top left arrow) you can find the share options - see my attached screenshot

  • Need JAVA code to create OIM ITresource-connection values are in a csv file

    Hi,
    Could any one plz help me with the java code used / tested before to create OIM IT resource dynamically, for the reference. IT resource parameter (connection) values in a .csv file, where in I've multiple environments.
    Thanks,
    Ramesh
    Edited by: user13267745 on Aug 19, 2010 12:37 AM

    Hi Gregg,
    You can create one transformation from the DataStore to itself.  In the "Technical" rules group, set 0RECORDMODE = 'X' (before image) or 'R' (reverse).  Therefore, when you execute its corresponding DTP, all existing records shouldl be set to zero.
    Then, as a second step, you can execute the DTP which is related to the transformation between the DataStore and the DataSource, thus loading the new records.
    I hope this helps you.
    Regards,
    Maximiliano

  • Need script can switch Offfice 365 plan E1 to E3 and enable litigation hold from CSV file

    Dear all,
    Currently, i need a script can switch Office 365 plan E1 to E3 and enbale litigation hold from the list email in CSV file. I don't know why Microsoft is not enable litigation hold for E3 user by default? Please help me.
    Many thanks.

    You should try like this
    $mbxs = Import-csv C:\Temp\Mailbox.csv
    foreach($mbx in $mbxs.UPN)
    Set-MsolUserLicense -UserPrincipalName $mbx -RemoveLicenses '<E1>' -AddLicenses '<E3>' -Verbose
    Set-Mailbox -Identity $mbx -LitigationHoldEnabled $true -WhatIf
    Please test with one test account and explore office 365 community as well.
    Regards Chen V [MCTS SharePoint 2010]

  • I have a mac mini which I bought in 2008. I need to buy a new mac, imac, and want to transfer all the files to the new mac. Can I do that with the 5 year old mini?

    Will the mac mini support ethernet transfer to a new iMac?

    Use the Migration Assistant. See:
    http://support.apple.com/kb/HT4889

  • Need to copy text in e mail and paste to seperate word doc file

    Previous to Firefox 4 I could highlight text in body of e mail, select Edit and drop down to copy then minimize screen and select Word Doc file, then paste and print text.
    Please advise, Coyote Deb

    You have the orange Firefox button?
    You can call up the classic menu bar ''temporarily'' by tapping the Alt key or pressing F10. To display the classic menu bar all the time, choose
    View > Toolbars > Menu Bar
    That will replace the orange Firefox button.
    Also, you should be able to copy by right-clicking on the selected text and choosing Copy from the pop-up menu. Could be quicker in some cases.

  • I need to do a clean install of maverick on my 2010 mbp what disk do i use and how do i move certain files from an external hard drive

    I want to do a clean install of maverick on my 2010 mbp.  I need to know what disk to use and also how i take certain files off my external hard drive and put on my computer.  When I was having problems with my airport they did a clean install and they pulled files of my time machine.   however they forgot to put the partition back in for a windows side.  Originally I had Parellels on my computer.  After my external hard drive got corrupted i called apple and they fixed the problem but didn't have me set up the time machine except for the external hard drive.  Now my only back up is from the external not from the laptop.    I am not sure how to do any of this.  I am not computer savvy...PLEASE I NEED  HELP>

    First, you need to make a backup of your MBP onto your external drive. I suggest you start by cloning your MBP drive to the external drive:
    Clone Mavericks, Lion/Mountain Lion using Restore Option of Disk Utility
    Boot to the Recovery HD:
    Restart the computer and after the chime press and hold down the COMMAND and R keys until the menu screen appears. Alternatively, restart the computer and after the chime press and hold down the OPTION key until the boot manager screen appears. Select the Recovery HD and click on the downward pointing arrow button.
         1. Select Disk Utility from the main menu then press the Continue
             button.
         2. Select the destination volume from the left side list.
         3. Click on the Restore tab in the DU main window.
         4. Select the destination volume from the left side list and drag it
             to the Destination entry field.
         5. Select the source volume from the left side list and drag it to
             the Source entry field.
         6. Double-check you got it right, then click on the Restore button.
    Destination means the external backup drive. Source means the internal startup drive.
    This clone is fully bootable and also contains a clone of your Recovery HD.
    Second, you need to do a clean install of OS X onto your MBP as follows:
    Install or Reinstall Mavericks or Mountain Lion from Scratch
    Be sure you backup your files to an external drive or second internal drive because the following procedure will remove everything from the hard drive.
    OS X Mavericks- Erase and reinstall OS X
    OS X Mountain Lion- Erase and reinstall OS X
    OS X Lion- Erase and reinstall Mac OS X
    Note: You will need an active Internet connection. I suggest using Ethernet if possible
                because it is three times faster than wireless.
    This should accomplish your goals. You will have a clean install of OS X on your MBP and a bootable clone of your old system and all your files on the external drive.

  • Need action to save a copy with original file name with suffix

    Hi All,
    I am using photoshop 7 (yeah its old, but working fine for me for general purposes). The problem is I have got this new task where I have to provide 3 copies of the same image but with different portions of it. I have several images (.jpeg) which I need to crop two parts of the image and save as two new image files. The requirement is that I need the copy images to bear the same name as the original and with a suffix to identify which cropped portion of the image is it. example, original file name is AB1001.jpg (1600x1200), 1st cropped image name to be AB1001_P.jpg (200x250) and the 2nd cropped image name to be AB1001_Q.jpg(100x180). I have around a 180 files, so need to do it in a batch, pls suggest how can it be done.
    Any help in this regard is much appreciated.
    Regards
    Chhuppa Rustam

    While a script would probably be best, photoshop 7 requires
    you download a scripting plugin which may or may not install
    in photoshop 7 depending on your version.
    You can probably do what you want with actions. The file naming part
    is not hard, but i have a couple of questions about the cropping.
    Are all the images the same size and are the crops in the same position for each?
    In other words on the P crop (200x250), is the crop in the same position on each
    image or different for each?
    MTSTUNER

  • Has anybody gotten this popup error message: ASI Eve CL Monitor has encountered a problem and needs to close

    Has anybody received this error message: ASI Eve CL Monitor has encountered a problem and need to close?
    == This happened ==
    Every time Firefox opened
    == Don't know

    I don't think this is a Firefox problem. I have the same error message and I get it regardless of whether I'm using Firefox or another browser.
    In checking [http://www.whatsrunning.net/QueryProductID.aspx?Product=16854] it is a file owned by Microsoft. I suggest you check your registry for errors.

  • Exactly what cables and hardware do I need to connect my early-2008 MacBook Pro to a flat-screen TV monitor to have both video and audio?

    Hello--
    I'm trying to figure out how to connect my 15" MacPro Book from early 2008 to a Sony flat screen TV monitor. I've been told I need a "Mini DisplayPort to HDMI Adapter" and a "HDMI to HDMI" cable, but I've also been reading that some cables only work with 2010 & 2011 laptops and that I may need additional cable/hardware to obtain audio. Could someone advise me on exactly what products I need to purchase?
    Thank you!

    Which MacBook Pro 15" do you have?
    With the silver keyboard (Early 2008)) or that one with a black keyboard (Late 2008)?
    If you habe the Late 2008 you can use a miniDisplay Port + Audio to HDMI like that one (stereo sound) or that one (5.1).
    If you have the Early 2008, it's not so easy, because you need a DVI + Audio to HDMI like that one (the Audio Channels had to be converted to Coaxial!) So much more adapters! Maybe there is a manufaturer which has the all in one solution)
    Both MacBook Pro DOESN'T support audio on the video output! The later ones (Mid 2010 and later) supports Audio output within the miniDisplay Port.

  • I have a mac pro but need a monitor and can't use LED needs suggestions

    I have a mac pro running on snow leopard, version, 10.6.8.  Here is the graphic info that is one my mac pro
    ATI Radeon X1900 XT:
      Chipset Model:          ATY,RadeonX1900
      Type:          GPU
      Bus:          PCIe
      Slot:          Slot-1
      PCIe Lane Width:          x16
      VRAM (Total):          512 MB
      Vendor:          ATI (0x1002)
      Device ID:          0x7249
      Revision ID:          0x0000
      ROM Revision:          113-A52027-140
      EFI Driver Version:          01.00.140
      Displays:
    VA730m:
      Resolution:          1280 x 960 @ 60 Hz
      Pixel Depth:          32-Bit Color (ARGB8888)
      Main Display:          Yes
      Mirror:          Off
      Online:          Yes
      Rotation:          Supported
    Display Connector:
      Status:          No Display Connected
    I am not sure what monitor will run on this mac pro bought in Spring of 2007.  Is there any monitor with a built in camera that can be used on this machine?
    I have confirmed with apple that it cannot run the LED monitors that apple sells. 
    suggestions or if you know what monitors I can try to find would be great.  If you need more information, please let me know.  I want to be able to do this right.  Thank you so much.

    I know there were many more problems 5 yrs ago with 3rd party monitors and have been some issues in between also.
    Apple does have what is needed to use multiple 30 inch displays and the 5770 is pretty mainstream and standard.
    It is also about the only card being sold outside ebay and a couple places in case you want to take your chances with Nvidia 8800GT 1st gen model or ATI 4870.
    Mini DisplayPort to Dual-Link DVI Adapter
    Display Adapters Needed

  • Video Card Addition (need 3 monitors)

    I am currently using a 2 X 2.8GHz Quad-Core Mac Pro with the NVIDIA GeForce 8800 GT card and I am needing 3 monitors on this machine. (2 monitors is cutting it) What is the best upgrade to do this? Am I better off purchasing another 8800 card or would something like the ATI Radeon HD 2600 Pro card do the job?

    Windows may have problems if you have both ATA and NVIDIA boards.

Maybe you are looking for

  • Electric Boogaloo sheets 1+2

    Q1: i) A wine shop allows customers to only buy wine in packages containing 3, 9 or 12 bottles. Write a method that accepts an integer (num) as a parameter and decides whether or not it is possible to buy num bottles of wine at the shop. Your method

  • Fans always run on full

    I have a G5 and the funs are always running on high. from the very second i start the machine. The Thermal calibration says everything is fine. does anyone know what is wrong with it? Ric

  • Jdk 1.5 bugs

    I sent these to the provided feedback email, but that felt a little too much like a black hole, so I figured that I would post those issues here as well. Please let me know if there is a more appropriate forum. Also, my apologies if these problems ha

  • Problem in installing solaris 10 in sun blade 1000

    Dear all, I am trying to install solaris 10 in sun blade 1000 and getting a problem that disk doesn't exist ......... After several tentatives, I understood that I need to format a harddrive as it is new. I formeted it with boot cdrom -s and the prob

  • For the MICRO should I NOT download the new driver upda

    I heard it screws something up in the player