How to use the digital inputs? (PCI-6010)

Hello

I have a PCI-6010 card and I tried to use a pulse generator in one of the channels of entry without success, I m using panels of 'Test' in MAX.

How can I configure dthe hardware to make it work?

Thank you

APOs instalar a ultima versão labview refazer tudo bem mouse conexoes as w.

Any forma, obrigado pela a definition.

Tags: NI Hardware

Similar Questions

  • How to use the digital TV tuner on Qosmio G30?

    Hello, I recently got a qosmio G30-175. Could someone tell me how I can use the digital TV tuner mode qosmio player? Thank you

    Hello

    You won't like this, but unfortunately the digital tuner is not a musician Qosmio option.

    QosmioPlayer software is actually quite limited you really need to start Windows Media Center to get all the features of your machine which is a shame. There is always a chance toshiba can update the software of PS in time to take into account items such as the digital tuner.

    Despite this, you still have one of the best phones on the market, so I would like to concentrate on that.
    :-)

    Kind regards

    Mark

    Post edited by: Mark Nettleton

  • How to use the digital pen on W700 (Win 8 version)

    Expert HE,

    How to add the digital pen for W700 with my digital "BAMBOO PEN - CTL-470' pen?

    or I buy Acer digital pen?

    Thank you

    A pen that works with a bamboo tablet is not compatible with the W700. Pens like that (fine point, sensitive to pressure, etc.) require what is called an active digitizer, which does not have the W700.

    You can use an inexpensive capacitive stylus like those that are advertised for the iPad and the iPhone, but those who are actually just a substitute for finger; the contact surface is a bit smaller and so maybe a little more specific than the finger and you will find perhaps more comfortable, but it does not add capacity.

  • How to count the digital inputs of the sensor

    IImsmd MicrosoftInternetExplorer4 normal 0

    I use a PCI 6221 OR-DAQ device and I want to count the total number of times that a sensor is activated. The sensor is connected to a digital line.

    Tadhg salvation,

    If everything you want to count the number of times where the sensor is activate, the best way to ensure this is to use a line from the meter, in the case of the 6221 try pin 37, Cnt 0 Src/PFI8. And take a look at the example of counting code digital Events.vi that you can find from the Finder example under Hardware Input and Output > DAQmx > Counter measures > County Digital events.

    Alternatively, if you use a digital line, just read the line, and if the sample is true variable increment held in one register at offset, similar to the Count.vi DI attached

    I hope this helps.

  • How to use the NI USB-6525 digital filtering feature?

    Hi can someone tell me how to use the 'digital filtering' feature of the NI USB-6525 device? How can I set up the device to turn on? Using LabVIEW or NI MAX?

    It is configured using a DAQmx property node:

  • PCI-MIO-16-1 shows the digital inputs 1-7 on, without same cable connected

    Max, my PCI-MIO-16-1 shows the digital inputs 1-7 as having entries of tension without same cable connected to the Board. No amount of spin with her (to the MAX) seems so he can act correctly in input or output mode. It's true, there are voltages on these pins. If I connect my cable (to a TBX-68 block), I see that it has on $line0 (on port0) 0v, 5v on line7 and 2, 5V on the rest. Trying to put these lines to something else in MAX seems to do nothing. (I also can't control the OD, either.)

    This card has tried to get a couple of have Weiwei at high speed. Now that I'm branching out, I found a strange behaviour. Of course, I tried to restart and turn off the computer and turn it back on. Automatic test MAX Returns instantly with a message "transmitted", that gives me hope, even if I don't trust the speed at which it seems to perform the check.

    I'm a complete noob at this stuff. Is there something obvious that I might be dominant? Is there a way I can test more deeply that the card works as it should?

    The open connections to the TTL inputs are usually detected as logic 1. You are not testing properly. Connect an entry to two gnd or + 5V. Don't let them ever floating.

  • using the function - how to use the values of the input variables on the table select statement names

    Hello community, I have a problem when creating a function. The purpose of this function is to check the table of weather gave yesterday or not. We must check this on different tables on different sachems. We are creating a function with input variables.

    CREATE OR REPLACE FUNCTION IN_SCHEMA.IS_YDAYDATA_TO_TABLE

    (

    in_schema IN VARCHAR2,

    in_tablename IN VARCHAR2,

    in_datefield IN VARCHAR2,

    )

    RETURNS INTEGER

    AS

    -Declaring variables

    v_is_true INTEGER.

    BEGIN

    SELECT

    CASE

    WHEN MAX (in_datefield) = TRUNC(SYSDATE-1)

    THEN 1

    ON THE OTHER

    0

    END

    IN

    v_is_true

    Of

    in_schema.in_tablename

    ;

    RETURN v_is_true;

    END;

    /

    When creating, I got error: [error] ORA-00942 (44:19): PL/SQL: ORA-00942: table or view does not exist

    How to use the values of the input variables on the table select statement names?

    Hello

    Here's a way you can use dynamic SQL statements for this task:

    CREATE OR REPLACE FUNCTION IS_YDAYDATA_TO_TABLE

    (

    in_schema IN VARCHAR2,

    in_tablename IN VARCHAR2,

    in_datefield IN VARCHAR2,

    in_first_date DATE DEFAULT SYSDATE - 1,.

    in_last_date DATE by DEFAULT NULL

    )

    RETURNS INTEGER

    AS

    -IS_YDAYDATA_TO_TABLE returns 1 if in_schema.in_tablename.in_datefield

    -contains all the dates in the in_first_date of the range through included in_last_date

    - and it returns 0 if there is no such lines.

    -If in_last_date is omitted, the search only the data on in_first_date.

    -If in_first_date is omitted, it defaults to yesterday.

    -Time parts of the in_first_date and in_last_date are ignored.

    -Declaring variables

    sql_txt VARCHAR2 (1000);

    v_is_true INTEGER.

    BEGIN

    sql_txt: = 'SELECT COUNT (*).

    || 'FROM ' | in_schema | '.' || in_tablename

    || 'WHERE ' | in_datefield | ' > =: d1'

    || «AND» | in_datefield | '< >

    || 'AND ROWNUM = 1';

    dbms_output.put_line (sql_txt |) '= sql_txt in IS_YDAYDATA_TO_TABLE");  -For debugging

    Sql_txt EXECUTE IMMEDIATE

    IN v_is_true

    With the HELP of TRUNC (in_first_date) - d1

    TRUNC (NVL (in_last_date

    in_first_date

    )

    ) + 1                -- d2

    ;

    RETURN v_is_true;

    END is_ydaydata_to_table;

    /

    DISPLAY ERRORS

    If you must use dynamic SQL statements, put all the SQL statement in a single string variable, such as sql_txt in the example above.  In this way, you can easily see exactly what will be executed.  Comment out the call to dbms_output under test is completed.

    Try to write functions that will address not only the question that you have now, but similar questions that you may have in the future.  For example, now that interest you only to the verification of the data of yesterday, but later, you might want to check another day or range of days.  The above function combines the convenience of a function simple (looks like yesterday data if you don't tell him otherwise) with the power of a more complex function (you can use the same function to check any day or range of days).

  • How to use the tuner DVB - T in Qosmioplayer?

    Hello

    Can someone tell me how to use the tuner DVB - T in Qosmioplayer? It is very much in the media library, but on starting the Qosmioplayer I just get snow like the old analog TV. I can go to my sky box via composite inputs, but want to use TNT an antenna in the drive.

    Hello

    As far as I know the Qosmio player is not able to receive the digital channels.
    Unfortunately, it is not possible.

  • How to combine several digital inputs for playback?

    Hi comrade Labview users.

    I just started using LabView and I am very new to it. I know him understand how it works and you have something to work, but I need to be more effective.

    I use DIO96H - USB DAQ Measurement Computing, which includes 96 digital inputs. I use the DAQ to acquire the activations of relay and record the number of times the relays flips.

    Basically, I created a digital input read and then copy & pasted 95 times... it works but I know that's not the best way to use LabView.

    How can I change the digital input (Di1/1stPortA/dev0) in multiples so that it iterates through all 96 channels without copying and pasting the same pattern over and over again?

    Leon

    You have the correct polymorphic instance for playback? Once again, for the material OR it would be a NChan Read. There should be a similar choice if I remember correctly.

  • the value of the digital inputs to change the field

    Hi all

    I have an edit field that has a digital text filter that only accepts phone numbers. Users have the choice to load these numbers from address book or direct entry.

    I used the digital filter to allow only numbers. .

    But when I tried to load these address book.  with editField.setText (phoneNum); It is to throw IllegalArgumentException.

    How to set digital inputs to the editField?

    Hi thanks for all your entries!

    My issued are resolved. I used BasicEditField aulieude EditField to solve this problem. the basicedit field allows the digital text and it solved the problem.

    Thanks for all your interest...

  • How to set the differential input for personal iotech Daq/3000 mode

    Hi all

    I currently use personal iotech daq/3000 for the acquisition of data from the accelerometer.

    I got readings of the analog input, while there seems to be no configuration for the differential mode.

    What I have is:

    selection of material - personaldaq / 3000:direct

    Double click on, then:

    Channel installation, there should be a selection of differential mode, I guess. But this is not.

    Thank you very much

    Alan

    Have you reviewed the C:\Program Files\DASYLab 10.0\manuals\IOtech_DAQ_notes. PDF? Or the help of equipment?

    The section of material assistance, using the analog inputs with DASYLab, includes pictures to show how to do this.

    Open hardware driver.

    Click the line Analog Input Channels, and then right-click to open the properties. This will display a dialog box that allows you to set the properties.

  • How to read the analog inputs of one Board of R for (PXI-7851R) series

    You can guide me please with the steps for reading of the analog inputs of a series a. card I use as the target fpga PXI-7851R.

    Have you looked at the examples provided with LabVIEW? There are examples showing how to read the analog inputs.

  • I want to use the digital books from the library, but Explorer encounters a problem and needs to close when I try to get the security update.

    I want to use the digital books in the library. When I try to use the link below to get the media player update security, as soon as I got to the page, I get a a get several times the same error - Internet Explorer has encountered a problem and must be closed and the page goes dead. Explorer trys to regen of the page, but it keeps getting an error. What should I do now?

    You can download the upgrade of Windows Media Play Security 2.5.0.1 under the following link.

    The security component upgrade
    http://drmlicense.one.Microsoft.com/Indivsite/en/indivit.asp

    Hello

    Follow the steps below and check, if it helps:

    1 reset the management of digital rights (DRM):

    a. Click Start, click Run, type explorer.exe and then click OK.

    b. on the Tools menu, click on Folder Options and then click the view tab.

    (c) in the area of advanced settings, under hidden files and folders, click Show hidden files and folders.

    d. clear the skin protected operating system files check box and then click OK.

    e. Locate the DRM folder on the hard drive. The DRM folder is usually located at the following location: C:\Documents and Settings\All Users\DRM Windows

    f. rename the folder to DRMbackup DRM.

    2 remove the DRM registry key:

    Important: This section, method, or task contains steps that tell you how to modify the registry. However, serious problems can occur if you modify the registry incorrectly. Therefore, make sure that you proceed with caution. For added protection, back up the registry before you edit it. Then you can restore the registry if a problem occurs. For more information about how to back up and restore the registry, click on the number below to view the article in the Microsoft Knowledge Base: How do I back up and restore the registry in Windows: http://support.microsoft.com/kb/322756

    a. close all open Windows Explorer Windows.

    b. Click Start and then click Run.

    (c) in the Open box, type regedit and then click OK.

    d. look for, and then click the following registry subkey:

    e. HKEY_LOCAL_MACHINE\Software\Microsoft\DRM

    f. remove the key and restart the computer

  • How to use the microphone with a music player

    I did not use the microphone input with any music player for the internet radio show. can it be done with vista on a sony vaio labtop

    Hellotrendsetter,

    Thank you for visiting the Microsoft answers Site.

    Please provide the make and model of your PC. Also, to better help, please relay the program or music player you use.

    You can also view the link below for more information on how to connect a microphone, music player or other audio device to your computer:

    http://Windows.Microsoft.com/en-us/Windows-Vista/connect-a-microphone-music-player-or-other-audio-device-to-your-computer

    Thank you

    Mary
    Microsoft Answers Support Engineer
    Visit our Microsoft answers feedback Forum and let us know what you think.

  • How to use the SDLT tape drive in the guest OS VM

    Dear

    now, I have HP DL380 G5 Server running windows 2003 Ent. with bus adapter host SC11xe PCI - E HP which directly connected tp SDLT Tape Drive as backup server and use for the backup operation.

    I want to move the physical backup to host vmware server and EMC AX4 allows you to have a backup online and allows you to take backup offline, SDLT tape drive

    My question is how I use the SDLT tape drive in guest OS vm and vmware knows "HP PCI - E SC11xe Host bus adapter" or not.

    Please let me know how to do this.

    Kind regards

    Mahdi Bellavia

    I have a G5 DL385 (AMD of the DL380 version) with a DLT3.   I use an Adaptec 29320LPE, appearing on the compatibility list.  We plugged a HP Ultrium 920 changer using the 'old method' SCSI passthrough.  We bought the Adaptec card, because we used initially ESX3.5.  We are now on ESX4.0, but for various reasons, the configuration left the same, so I have not tried with VMDirectPath I don't know if it is possible to use the SC11ex card, but if you arrive VMDirectPath at work, it seems then you need another SCSI card.

Maybe you are looking for