Output to the source mV using fluke 726

I was recently given a VI that controls the entries in a fluke 726.  The VI is simple, but I've met a few simple Questions about how to change a few things.  My fluke 726 is sourcing from millivolts to thermocouples for testing purposes.  The VI I have has a transformation of my entry number in volts and then sourcing with the moat in volts out to the thermocouple.  Playback I get Volt is imprecise.  I need the number to be sent and read in millivolts for a more accurate setting.  The driver I have on labview for the fluke 726 was already built in the VI and there a selection "Output - Volts DC", but nothing for millivolts.

Thank you, after I posted this yesterday, I went in the case of pilot and made one for the case I wanted it to do.  I knew that the 726 mV source, but I didn't know if you could tell with labview because it wasn't in the pilot.  A simple manipulation of a tension mirrored case led me to discover that you can tell him what to do as long as you invite him just to talk about the fluke. (find the command prompt on the website of moat.)

Thanks again for your help, and Yes talking to someone at random would have probably led me on the correct path.

Tags: NI Hardware

Similar Questions

  • CS5, no Audio output of the Source monitor, but output OK for the program monitor

    Hi all

    Any thoughts on why audio output would be audible during playback in a timeline/program monitor, but the same clip doesn't produce audio output when loading in the source monitor? In the body of CS5.

    I checked the preference settings and everything seems to be fine there.  We have just added a set of external speakers to this workstation and those are the audio devices in the program monitor.  When a clip is read in the Source monitor, speakers produce a nice low hum, but the sound of the clip is missing.  The buzz that crosses leads me to believe the audio hardware is mapped and set correctly, but maybe not?

    Thanks for your thoughts?

    LIndsay

    My apologies for the lack of detail... I know better than that.  Luckily I thought about it the problem.

    The clip is Ikegami MXF.  The problem was that the first audio channel didn't have any audio recorded to it.  I changed the properties audio clip and disabled channel 1. Voila! The clip was loaded in the source monitor and the sound became audible.

    I found the inspiration for the fix in this thread: http://forums.adobe.com/message/4324033#4324033

    Thanks for the research!

    Lindsay

  • are there official recommendations from adobe, including the source to use for training in the specific topic

    I'm publishing posts on Photoshop and Photoshop Elements on my blog Photoshop tipovi I trikovi. what I want is an official recommendation of Adobe, what source or the book is best to use to learn something specific like work with logos of type, or design web sites, and so on. I want this information because that plan to add links to the recommended below source my messages. So if I post where I explain how to deal with the text of paragraph, to include the link to the best source for learning about this topic. You can never explain everything in a position, even in a few posts for some topic and is concerned to provide the right source for those who have spent time and visit my blog if they need more. Y at - it such information and where?

    No, we have really who.

  • Where is the source for the GPL had NDK tools?

    Since the NDK (specifically, I use the 2.0.1 NDK PlayBook) includes tools (gcc, gdb, binutils etc) GPL3, RIM needs to also make the source code used to compile these tools available. Specifically, I am interested in gdb, as the "vanilla" version of the FSF does not support ARM QNX Neutrino (it has support of QNX Neutrino i386, however). The version distributed with the NDK reports himself as ' GNU gdb (GDB) 7.3 qnx (Rev.). 613)", so I assume that it was compiled from sources patches.

    RIM's commitment to open source, I am sure that just an oversight.

    Where you are looking for?

    It seems that QNX makes available through Foundry27:

    http://community.QNX.com

    Rest SVN:

    http://community.QNX.com/SF/SCM/do/listRepositories/projects.toolchain/SCM

    'core-dev-tools' SVN repo (username: guest, no pass):
    http://community.QNX.com/integration/ViewVC/ViewVC.CGI/tools/?root=core-dev-tools&system=exsy1001

    Includes:

  • Security problem for the source code

    Hello guys '

    I have a question about the safety of coding. So, I know that anyone can create .jar .java or .class file.

    And my question:

    Is it possible to create the .cod file .java file? I think the best solution to save the source code uses secure obfuscator.

    Do you use the Java obfuscator? What obfuscator is the best?

    Please share your knowledge with me ' guy

    TNX'

    You would like to read the following Article:

    How to-obfuscate code in a BlackBerry application
    Article number: DB-00438

    http://www.BlackBerry.com/knowledgecenterpublic/livelink.exe/fetch/2000/348583/800901/How_To_-_Obfus...

    I know that a BlackBerry development company using Proguard.

  • How to pass the value of the cursor in the procedure to use as dblink

    Hello

    I have a cursor in the procedure. I am inserting some values into the destination table by querying the source table using dblink. And I'm collecting this db link in the cursor. So, my question is how I will pass on the value of dblink values read from the cursor in each iteration? This is my procedure.

    CREATE OR REPLACE
        PROCEDURE desktop_proc
        AS
          v_name VARCHAR2(10);
          v_dblink  VARCHAR2(10);
          CURSOR db_cur
          IS
            SELECT PNAME,OLTP_DBLINK
            FROM PDATA
            WHERE pname in ('RMA','RNA')
            ORDER BY PNAME;
        BEGIN
          OPEN db_cur;
          LOOP
            FETCH db_cur INTO v_name,v_dblink;
            EXIT WHEN db_cur%NOTFOUND;
            INSERT INTO desktop_lite
              (
                Datestamp,
                pname,
                Db_name,
                Company_name
              )
            SELECT Date_Range,
              v_name,   -- local variable
              dbname,
              Company_name
              FROM
              (SELECT bu.datestamp Date_Range,
                      (SELECT name FROM v$database@v_dblink) dbname,
                      bu.name Company_name
               FROM dboltp.s_org_ext@v_dblink bu
               INNER JOIN com_unique uusers ON (uusers.bu_id = bu.row_id)
              );
          END LOOP;
          CLOSE db_cur;
        END desktop_proc;
    

    Thank you

    Maybe this can work for you:

    CREATE OR REPLACE
        PROCEDURE desktop_proc
        AS
          v_name    VARCHAR2(10);
          v_dblink  VARCHAR2(10);
          v_statement varchar2(2000);
          CURSOR db_cur
          IS
            SELECT 'test_name' dual_name, 'test_dbl' dual_link
            FROM dual;
        BEGIN
          OPEN db_cur;
          LOOP
            FETCH db_cur INTO v_name,v_dblink;
            EXIT WHEN db_cur%NOTFOUND;
            v_statement := '
            INSERT INTO desktop_lite
              (
                Datestamp,
                pname,
                Db_name,
                Company_name
              )
            SELECT Date_Range,
              '''|| v_name || ''',
              dbname,
              Company_name
              FROM
              (SELECT bu.datestamp Date_Range,
                      (SELECT name FROM v$database@' || v_dblink || ') dbname,
                      bu.name Company_name
               FROM dboltp.s_org_ext@' || v_dblink || ' bu
               INNER JOIN com_unique uusers ON (uusers.bu_id = bu.row_id)
              )';
            dbms_output.put_line (v_statement);
    --            execute immediate v_statement;    -- first look at the statments you produce, then uncomment and test it
           END LOOP;
           CLOSE db_cur;
    END desktop_proc;
    /
    show err
    
    exec desktop_proc
    

    This is my result, it seems that this can work:

    INSERT INTO desktop_lite

    (

    Timestamp,

    PName,

    Db_name,

    Company_name

    )

    SELECT Date_Range,

    "test_name."

    dbname,

    Company_name

    Of

    (SELECT bu.datestamp Date_Range,

    Dbname (SELECT name FROM v$database@test_dbl).

    Bu.Name Company_name

    Dboltp.s_org_ext@test_dbl drunk

    INNER JOIN com_unique uusers ON (uusers.bu_id = bu.row_id)

    )

  • How can I check the immutable flag using VCM?

    So the VCM is patching our Oracle Linux big servers now (thanks 5.7.2) However there is a problem.

    On some of our servers, the immutable flag is set on grub.conf.  It's simple to fix.  Just do a 'chattr /boot/grub.conf-i"and we're on our way.

    I am looking for a way to automate this...

    How can I create a compliance model to run a lsattr command to verify if the immutable flag is set on/boot/grub.conf, and can deal with a remote control?

    Appreciate the help.

    Steve

    Hi Steve,.

    First of all, it not there no easy way in VCM (using the default file structure data class) to get the little extended as immutable properties file. VCM now collects information may be collected using the command ls only.

    But, something known as a Type of custom information that can be exploited to run system commands and parse the output of the command to use the compliance data facilitate the VCM. However, please note that these data would *NOT* be available for automated remediation. If you're ok, read more:

    I guess that's for file /boot/grub/grub.conf only. I also assume you're on VCM 5.7.2.

    This would require steps below:

    (1) create a kind of personalized information (CIT)

    (2) collection of data using information on file /boot/grub/grub.conf personalized data class

    (3) check the data collection in the VCM console | UNIX | Custom information node

    (4) write the compliance rule and run the model

    (5) verify the results

    These steps are described in the attachment. Please let me know if you need further information.

    Thank you and best regards,

    Pravin Goyal

  • Settings of the source is now gray for each new r3d imported clips

    At some point, I'm now impossible to import a new clip of r3d (old and new project) with the Source not grayed out settings. Relocation of REDCINE-X has not been set. Reset has not been set.

    Previously imported clips are clickable Source parameters. A same re-imported clip will also be grayed out option.

    Question was not existing yesterday on Premiere Pro CC 2015...

    For any clip of R3D (or another format that used to have the Source settings) imported CC, 2015, the settings feature moved to Master Clip effects. If you import a clip of R3D CC 2014 project, then the Source settings will be enabled in the project Panel.

    Excerpt from the doc for help:

    Parameters of source code available in the effect controls panel

    For RED, ARRI, CinemaDNG, DPX and Sony F65 media files, you can set the Source settings using the master tab in the effect controls panel. Previously, the settings of the Source were available in a modal dialog box.

    Summary of new features

  • Is there a way to turn off the sound on the source clips?

    I need a bunch of GoPro filmed by a drone of the screen and the sound is the mind numbing! How can I disable it? Thank you.

    Select the clips you want to keep silent in the project Panel and once you have all selected them, go to the Clip menu > edit > Audio channels and set the number of Audio tracks to zero {0} and click OK. You will get a dialog box warning that this will not affect clips already placed in the timeline panel, click OK. This will make the Video clips of single source clips.

    To restore the audio after viewing the source for use clips in the timeline, repeat the foregoing and redefine the Audio tracks on the number they were before you the muffler for viewing.

    MtD

  • detect the source procedure variables

    Hi guys,.

    Suppose I have a procedure with the oracle of the source, and I give a simple query (SELECT TALK, BLAH TIME)
    and on the target, I would use jython to process the data from the source.

    1. is there a conclusion on the way in which we could get all the variables in the source?
    2 is it possible to get the result from the query result set?

    in the target control, I could send the value of the source query using such #TALK and #TIME setting
    but I just can't understand how the result of the loop and get all the values of ranks


    Thanks in advance


    herl

    Published by: user3918409 on June 29, 2009 03:49

    Hello Heri,

    It's much easier than you can imagine... None... In fact, as I understand it, you already have all necessary.

    In an ODI procedure when a query of the source is used, it creates something as a "slider" which will execute the Code tab target once for each returned row.

    I mean, iif your select return 4 rows, the target code (jhyton as you wish) will be executed 4 times.

    The way to reference from the source variables is "#my_column_from_select" where "my_column_from_select" is the name or alias defined in the source query, and you must refer to each of them.

    This help you?

  • Configuration of the Source of AP?

    Can someone guide me the steps required to configure the AP Source?...

    Hello

    For the Source configuration, use the following navigation:

    Responsibility of AP-> Setup-> research-> Payables. Request for the "SOURCE" type and add it to the line.

    Concerning
    Arun Kumar sahmane
    Apps Associates.
    http://arunrathod.blogspot.com/

    This question has been posted earlier... Please visit the following link...

    Re: AP HAVING/DEBITMEMO CONVERSION of INVOICES

    Published by: Arun Kumar Sahm on August 25, 2008 12:28

  • DAQmx: Outputs digital multiple tasks for the same card using the on-board clock

    I have a PCI - 6259 DAQ I'm programming with DAQmx. I want to create two tasks of digital output on the same card. A single task using on-board clock, continuous samples. The other task uses an onboard clock, finished samples and an external trigger with trigger Start.Retriggerable property = TRUE. Is this possible with my hardware and DAQmx? There will be a conflict if two tasks use the same clock source?

    This is not possible, you can have only one task timed materially by device.

    Best regards

  • using the iMac 5 K and BM IO - source monitor changing 25 p 50 p causing black between the source and the program 4 s

    Reading in the source organization IMac 5 K using Blackmagic IO outputs 25 p 50 p monitor

    The effect is black as monitor re sync when I switch between 25 p 4 seconds the program monitor and hardware 25 p in the source monitor. Occurs on iMac 5K not MacBookPro.

    This happens with:

    Images 25 p in F5 Sony MXF DALYS and

    25 p DALY mxf op1a export agency

    Reading in the Source monitor is reported as 50 p BM Office video and monitor.

    A sequence created by dragging clips to create (so matching 25 p DALYS) reports it as 25PsF in BM (and so in 50i by monitor)

    Change the interpretation of the attached to the interlaced 30 frame can result in 60i and then adjusting to 25 fps may result in 50i, but this appears inconsistent.

    It's on an IMac 5 K use pilot 10.6.4 with El Capitan to CC2015.2 and day to day.

    This problem occurs both Ultrastudio 4 K and MiniMonitor (the reduced MiniMonitor the 50 p to 720/25 p

    The problem ONLY is NO PRODUCT with the same project/media/drivers/software/e/s on a MacBookPro.

    I don't know if it means a bug in the driver of the ORGANIZATION or the World Bank.

    Thanks for any help or the confirmation or not of this problem on a similar facility

    OK - after that the support of a lot of help from the world BANK has been fixed by trashing preferences (I used preference - Digital Rebellion Manager))

  • CS4: Clearly the source, but the motion blur of the output gives the export

    Hello!

    When exporting my videos imported into CS4, quick movement appears blurry, even if the source is much clearer.

    Demo 1: Source, output
    Demo 2: Source, output

    I was hoping someone could explain to me why the output is much more blurred and if possible, how to fix it.

    Sequence options:
    I tried a bunch of sequence different presets such as AVCHD/AVC-Intra/HDV/XDCAM/P2, or custom options (parameter FPS to 29.97, 30, 59.94, 60 fields/up/down, change the display format), but the output is blurry, no matter what I try. Made with upper/lower case fields does not; so the progressive setting is probably correct.

    I have also created a project without a sequence, imported the clip and it has exported directly; the output was still unclear.

    Export options:
    I used recommended an export preset for export on Vimeo (see paragraph CS4), which uses the H.264.

    Information about the source clips:
    They are filmed with my GoPro Hero HD cam to 720 p 60.
    MediaInfo output: video, audio
    Output of GSpot
    Interpretation of the creation of a clip

    My system:
    Windows 7. 4 GB of Ram, but 32 bits, up to 2.8 GB of RAM is used.
    Intel Core i3 550, 3.20 GHz
    Video card: Nvidia Geforce 8800GTS 320 MB of RAM
    1 monitor

    I hope that this information is sufficient, please let me know if there is anything I should add.
    Even if it is not possible to fix it, I hope someone can explain to me why the output is so different from the source!

    Thank you!

  • APEX shortcuts using the source of the body of the PL/SQL function

    Hi all

    Recently, I came across the feature of "Shortcuts" in the "Shared components" section of the APEX and thought great, somewhere to set the common/standard items once, then use these several times in different pages of my application.

    This seemed to work correctly when you use the 'Source' of "HTML Text" or "HTML text with special characters escaped", but then I wanted to explore the use of the "Body of the PL/SQL function" option to create a more dynamic shortcut/variable on the base.

    This is where I came across a particular problem in the APEX (Version 3.2.1.00.10 on GR 11, 2 on Oracle Enterprise Linux). When I set my shortcut, and then perform a reference to my shortcut (using "MY_SHORTCUT") in an area of a page, the value of shortcut is back, but is added with the reference variable (ie. the 'MY_SHORTCUT' chain).

    For simplicity, my example looks like this (of course, my real world example is a bit more complicated, but this example produces the same error):
    (a) I define my shortcut called "MY_SHORTCUT" and using the body of the PL/SQL function under "Source Type", define my procedure as "htp.p(:USER)."
    (b) I then create a new page (basic HTML page), and a new region of the 'type'-> 'HTML Text (with shortcuts).
    (c) in the "Source region", I define my shortcut like - "MY_SHORTCUT".
    (d) I apply changes and then run the page.

    I'll be back will be name of the current user with "MY_SHORTCUT" appended/added immediately after the user name - for example. the string:-' BRAD «MY_SHORTCUT»»

    Question is - how to stop the shortcut/reference text "MY_SHORTCUT" to be added to the variable you want to see the and thereafter on your page? I am just wanting the variable, NOT the reference for the shortcut.  I do something wrong using the HTP package, and if yes, what should I use?

    If "MY_SHORTCUT" is defined as "HTML text with special characters escaped" (where I can refer to elements of application using the syntax '& USER.') so that everything works correctly. My reason for using the PL/SQL is to generate a more dynamic output variable, based on elements of application throughout the entire application - and of course the use of shortcuts to minimize coding and duplication.


    Thanks in advance,
    Brad

    Hello

    The body of the PL/SQL function must RETURN a value.

    Try:

    RETURN :APP_USER;
    

    Andy

Maybe you are looking for