How do you wire a waveform vi to a analog out vi?

i keep getting error inappropriate use of. what doe's this mean? And how do I fix it?
thanks jeff

Which waveform VI are you trying to connect? Where are you trying to connect it? It sounds like you're trying to connect two outputs together and that's not allowed. Provide some more details on what you're trying to accomplish and even post a picture of the VI or even better would be the actual VI.

Similar Messages

  • How do you know if your apple warranty is run out on I phone so I can buy apple care

    How do you know if your apple warranty is run out on I phone so I can buy apple care

    Check Your Service and Support Coverage: Apple - Support

  • How do you download music in itunes that is greyed out due to explicit content?

    how do you download music in itunes that is greyed out due to explicit content?

    Hi Wheels272727,
    If you have questions about the Parental Controls settings in iTunes, you may find the following article helpful:
    iTunes: Using Parental Controls
    http://support.apple.com/kb/ht1904
    Regards,
    - Brenden

  • How do you transfer songs to a new iPod with out a computer

    Been thinking on getting a new iPod but I don't know how to transfer songs from one to the other with out a computer

    You can redownload iTunes purchases directly to the iPod by the followong for newer iPods
    Downloading past purchases from the App Store, iBookstore, and iTunes Store

  • How can I generate tones with usb 6008 using analog out?... tia sal2

    Greetings All
    I've been looking at the example Sim Phone.vi that comes with labview and would like to generate similar tones out of our usb 6008 device. I can get a very faint sound out of our usb 6008 using the example Gen Multi Volt Updates-SW Timed.vi Does anyone know the best way to alter Sim Phone.vi to have the sound come out of the Analog output of our usb 6008 device. ( I have a small speaker connected to the Analog out on our USB 6008)
    PS: we are using labview 7.1
    Does anyone know the Analog output frequency range of the usb-6008? Is this possible?
    TIA
    Attachments:
    Gen Mult Volt Updates-SW Timed.vi ‏78 KB

    Hi sal2,
    As stated earlier you could most certainly use the USB device to generate sound, but that would be at a max update rate of 150 Hz. While according to Nyquist theorem you could get frequency information for signals below 75 Hz, you may notice that the quality of the data in that spectrum to be very low due to having so few samples.
    While technically possible to produce you really should look for a device with a faster Analog Output update rate. I would look for a device that supports Analog Output at least 10x the maximum frequency that you want the user to hear. Some great, yet lower cost products, would be the M-Series line of products. They would give you the performance that is really needed in the type of application that you are talking about.
    If you still want to use the USB Device, then you would need to use code similar to that found in the example Gen Mult Volt Updates-SW Timed (Found here: C:\Program Files\National Instruments\LabVIEW 7.1\examples\daqmxbase\Dynamic\ao).
    Best of luck getting your system together,
    Otis
    Training and Certification
    Product Support Engineer
    National Instruments

  • How do you update two waveform graphs at different rates?

    Hi there!
    This is my first post after lurking and reading for a couple of weeks.  I am relatively new to Labview so this website has been a tremendous resource.  Here's to hoping that you guys can help me out.
    My problem has to do with graphing two sets of waveform data.  I have a USB-6218 DAQ device and I am acquiring a voltage reading for a thermometer and a voltage reading from a power supply.  Essentially what I want to do is update the thermometer voltage graph about once a second while leaving the power supply voltage graph updating continuously.
    I know that my device can only capture data at a constant rate so I customized the DAQ capture parameters strictly for the power supply voltage.  I also know that to display the temperature data I would have to throw away some of that data so I can get just the one temperature a second.
    This is where I am stuck though.  Can someone please offer some advice as to how I can go about doing something like this?  Would I have to convert the waveform data into arrays and manipulate the values?  If so, do you lose the time information in the waveform when converting to arrays?
    Thanks a lot in advance!

    So I made a case structure where if the elapsed time is 1 second then initiate the waveform.  It's a start but all it does is have a 1 second gap in the data.  I'd like for it to be continuous.  Maybe I'm not setting up the case structure correctly.  Can you please advise further?
    Thank you!
    PS Attached is my VI.
    Attachments:
    TemperatureCapture.vi ‏114 KB

  • How do you output different waveforms on 2 channels with circular buffers?

    I'm trying to program the PCI-6711 to output two different complex waveforms on DAC0OUT and DAC1OUT using Visual Basic. I'm working from the VBasic WFMdoubleBuf example by expanding the number of channels and the ChanVect to the two channels and loading and transfering to two different channels. I am filling the initial buffers by inputing data from a file But instead of seeing separate but synchronized waveforms on the two channels, I'm seeing no waveform on DAC0OUT, and a combination of the two waveforms on DAC1OUT. What am I doing wrong?
    Attachments:
    frmRun7.frm ‏17 KB

    Roz,
    Calling the WFM_Load() function multiple times for multiple channels is useful only if you are not doing double buffering. When you do double buffering, the WFM_DB_Transfer() function requires that the two waveforms be interleaved. The KnowledgeBase linked below discusses this in more detail:
    Waveform Generation on Multiple Channels Using PCI E Series Boards
    Furthermore, I have included a code snippet that illustrates the process of interleaving the waveforms, etc.
    iStatus = NIDAQMakeBuffer(pdBuffer0, ulCount, WFM_DATA_F64);
    iStatus = NIDAQMakeBuffer(pdBuffer1, ulCount, WFM_DATA_I16);
    if (iStatus == 0) {
    /* If buffer was made correctly, then output it. */
    iStatus = WFM_DB_Config(iDevice, iNumChans, piChanVect,
    iDBmodeON, iOldDataStop, iPartialTransferStop);
    iRetVal = NIDAQErrorHandler(iStatus, "WFM_DB_Config",
    iIgnoreWarning);
    iStatus = WFM_Group_Setup(iDevice, iNumChans, piChanVect,iGroup);
    iRetVal = NIDAQErrorHandler(iStatus, "WFM_Group_Setup",
    iIgnoreWarning);
    iStatus = WFM_Scale(iDevice, piChanVect[0], ulCount, 1.0, pdBuffer0,piBuffer0);
    iRetVal = NIDAQErrorHandler(iStatus, "WFM_Scale",
    iIgnoreWarning);
    /****************INTERLEAVING OPERATION**************************/
    /*For analog output on multiple channels, the data should be interleavedbefore outputting.*/
    for (i=0;i{
    piBuffer[2*i]=piBuffer0[i];
    piBuffer[2*i+1]=piBuffer1[i];
    /****************INTERLEAVING OPERATION**************************/
    iStatus = WFM_Load(iDevice, iNumChans, piChanVect, piBuffer,ulCountTotal, ulIterations, iFIFOMode);
    iRetVal = NIDAQErrorHandler(iStatus, "WFM_Load",
    iIgnoreWarning);
    iStatus = WFM_Rate(dUpdateRate, iUnits, &iUpdateTB,
    &ulUpdateInt);
    iRetVal = NIDAQErrorHandler(iStatus, "WFM_Rate",
    iIgnoreWarning);
    iStatus = WFM_ClockRate(iDevice, iGroup, iWhichClock,
    iUpdateTB, ulUpdateInt, iDelayMode);
    iRetVal = NIDAQErrorHandler(iStatus, "WFM_ClockRate",
    iIgnoreWarning);
    printf(" The waveform should be output at a rate of %lf updates/sec.\n", dUpdateRate);
    iStatus = WFM_Group_Control(iDevice, iGroup, iOpSTART);
    iRetVal = NIDAQErrorHandler(iStatus,
    "WFM_Group_Control/START", iIgnoreWarning);
    Good luck with your application.
    Spencer S.

  • How do you save a Waveform Graph as an X Y chart + be able to save the coordinates at a variable iteration?

    I am trying to do this with an O-Scope VI, and I am very new at LabVIEW, so please excuse any errors, or obvious questions.

    Hi Nick,
    Which specific VI or set of VIs are you using to get this data? In order to put data in an XY Graph you will need to put together a cluster of your X and Y data and feed it to the XY Graph. You prepare the cluster by developing an array of X coordinates and an array of Y coordinates and bundling them (Using a Bundle function) into a cluster.
    By variable iteration do you mean an iteration of the user's choice, or a specific iteration count (like every 10th iteration)? Choosing when to load data into the cluster or when to display new data on the XY Graph can be done by using case structures and a button on the front panel. You could also use the iteration [i] terminal of your loop and some math and Boolean logic to choose when to execute certain commands.
    Some resources that might help a new user:
    http://zone.ni.com/devzone/cda/tut/p/id/5054
    http://zone.ni.com/devzone/cda/tut/p/id/5247
    http://zone.ni.com/devzone/cda/tut/p/id/5243
    http://zone.ni.com/devzone/cda/tut/p/id/7605
    Will
    Certified LabVIEW Architect, Certified Professional Instructor
    Choose Movement Consulting
    choose-mc.com

  • How do you restore on a Mac? I want out of Mavericks, as it's slowed me way down. I inherited this mac from my predecessor. Help!

    I recently updated to Mavericks (March 27th).  I inherited this Mac when I took my position.  I've had to teach myself how to use it and make the decision to update.  I am sorry now as it's slower than slow and I'd like to restore to a back up in the Time Machine.  I find Apple Support difficult to manuever to discover how to do most anything. 

    Activity Monitor - Mavericks
    Activity Monitor in Mavericks has significant changes
    Performance Guide
    Why is my computer slow
    Why your Mac runs slower than it should
    Slow Mac After Mavericks
    Things you can do to resolve slowdowns  see post by Kappy

  • How do you route the line-in audio to line-out on Mac Pro (10.6.8)?

    New to Mac. Seems like it should be a straight forward deal, but it's not obvious how to make this happen.  I can tell the audio is coming in, as the input levels are reflected under System Pref's.  But I can't hear the audio on the line-out speakers and there doesn't seem to be an option to explicity route the audio.  Probablly missing something simple.  Any help would be appreciated.

    You can do this without buying or using 3rd party s/w. Use GarageBand this way:
    1. New, Empty Project
    2. On the next screen, choose:
         a. Audio, Line In
         b. Input 1+2
         c. Check the "I want to hear my instrument as I play and record" option
         d. "My instrument is connected with:" - Built-in Input
         e. "I hear sound from;" - Built-in Output
         f. Click "Create"
    3. You should immediately hear sound; you don't have to record anything.
    4. If you don't see green bars on both the Audio 1 track and the master volume (top right), something is either wrong with your input or the steps didn't work for you. To redo the steps, choose "Track, Delete Track" from the menu and try again.
    IMPORTANT: Make sure that all of the needed volume controls are up high enough to hear something:
    1. Audio 1 volume and Master Volume sliders in GarageBand
    2. Volume slider on Apple main menu, speaker icon not muted
    3. Volume on input device (e.g. iPhone)
    See how you go
    P.S. I do it on a mac mini but it shouldn't be any different
    Message was edited by: SilverSkyRat

  • How do you have a cell highlight momentarily and fade out when selected?

    I've noticed that in some apps, when the user selects a table view cell, it will momentarily highlight, but the highlight will immediately fade out (i.e. you can tell that the cell has been highlighted, but the highlight doesn't stay -there is just a checkmark).
    When I select a cell, I want the selected cell to stay selected, but have the highlight fade out immediately. I can't see any options to achieve this effect. I've tried using the setHighlight edmethod to set the cell to be unhighlighted in the didSelectRowAtIndexPath method:
    - (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
    UITableViewCell* tableViewCell = [tableView cellForRowAtIndexPath:indexPath];
    tableViewCell.accessoryType = UITableViewCellAccessoryCheckmark;
    [tableViewCell setHighlighted:NO animated:YES];
    However, this does not appear to work. I don't know if this is because I've done something wrong with trying to implement this code, or if the approach I'm attempting is not how you're supposed to go about it. If anybody has any ideas I'd be grateful.

    m_userName wrote:
    When I select a cell, I want the selected cell to stay selected, but have the highlight fade out immediately. I can't see any options to achieve this effect. I've tried using the setHighlight edmethod to set the cell to be unhighlighted in the didSelectRowAtIndexPath method:
    The Selected State and the Highlighted State are actually independent. I.e. a cell can be selected but not highlighted and vice versa. This can be confusing because, for a standard cell the appearance of the Highlighted State tracks the Selected State style (except the Highlighted State doesn't change the label text to white). But if you subclass a cell you can make the two states appear quite different.
    So the solution is to turn off the Selected State of the cell. This doesn't change which index path is selected. The table view keeps track of that, so turning off the Selected State of the cell only affects its appearance. However, whenever a selected index path is scrolled out of view and then back, the cell that's placed at that index path must be manually reset to it's Non-Selected state before it's displayed. This is because whenever a cell for the selected index path is obtained from tableView:cellForRowAtIndexPath:, the system will set that cell to the Selected State.
    // MyTableViewController.m
    #import "MyTableViewController.h"
    @implementation MyTableViewController
    #pragma mark Table view methods
    - (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView {
    return 1;
    - (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section {
    return 24;
    - (UITableViewCell *)tableView:(UITableView *)tableView
    cellForRowAtIndexPath:(NSIndexPath *)indexPath {
    static NSString *CellIdentifier = @"Cell";
    UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
    if (cell == nil) {
    cell = [[[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault
    reuseIdentifier:CellIdentifier] autorelease];
    cell.textLabel.text = [NSString stringWithFormat:@"Row %d", indexPath.row];
    // set selection style to None here to prevent a flash when indexPath is selected
    cell.selectionStyle = UITableViewCellSelectionStyleNone;
    return cell;
    - (void)tableView:(UITableView *)tableView
    willDisplayCell:(UITableViewCell *)cell forRowAtIndexPath:(NSIndexPath *)indexPath {
    cell.selected = NO;
    BOOL isSelectedPath =
    [indexPath compare:[tableView indexPathForSelectedRow]] == NSOrderedSame;
    cell.accessoryType = isSelectedPath ?
    UITableViewCellAccessoryCheckmark : UITableViewCellAccessoryNone;
    // reset selection style here, after the cell has been set to the Non-Selected state
    cell.selectionStyle = UITableViewCellSelectionStyleBlue;
    - (void)tableView:(UITableView *)tableView didDeselectRowAtIndexPath:(NSIndexPath *)indexPath {
    UITableViewCell* tableViewCell = [tableView cellForRowAtIndexPath:indexPath];
    tableViewCell.accessoryType = UITableViewCellAccessoryNone;
    - (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath {
    UITableViewCell* tableViewCell = [tableView cellForRowAtIndexPath:indexPath];
    tableViewCell.accessoryType = UITableViewCellAccessoryCheckmark;
    [tableViewCell setSelected:NO animated:YES]; // <-- setSelected instead of setHighlighted
    @end
    - Ray

  • How do you copy a text message and print it out?

    Hi i'm trying to print out so text messages from 2 people ,how do i do this?

    Copy/Paste to notes; then print, Copy/Paste to email; send to yourself; then print, or use third-party software to extract from your phone, then print:
    http://www.wideanglesoftware.com/touchcopy/index.php

  • How do you get iCal to accept an invitation sent out to a list?

    When I am sent an invitation, the following error is produced by iCal:
    "Someone invited you to an event using an email address that isn’t on your “me” card in Address Book. Find your email address in the following list and add it to your card in Address Book."
    The email address used is the one on my "me" card.
    It looks as if the problem is that the invitation has been sent out to a list and iCal appears to be unable to handle invitations that are sent to a list of addresses.
    Is there any way to switch off this additional processing, so I can receive ICS invitations that have been sent to a list of email addresses?

    Without actually seeing some of what is in the .ics attachment there's really no way to see what's going on.

  • How do you sync two audio clips without a clapper board?

    ... so the cameras had to be well back to catch the whole shot, and to catch the sound, we used a separate audio recorder closer to the performers.
    In hindsight, I suppose we could have used a clapper board but if the board was close to the recorder, it would be hard to see... and if it was closer to the cameras, it would be hard to hear the clap on the recorder.
    now the question is how to perfectly sync the better audio from the recorder with the lesser audio from the cameras (then delete the lesser audio)
    so far, its not quite right and their lips are off like an old Japanese Sci Fi Movie. Is there any way to move one track frame by frame over the other to get it right? (some sort of keyboard command?)
    OR is there some sort of app that someone wrote that could overlay the the good audio with the reference audio and sort of "snap it" into position? The waveforms look similar aside from the quality and strength of the signals.

    Rob, Andy
    just wanted to revisit this post. Were onto something great here!
    so to update us, I DL'ed "PluralEyes" but it didn't work. Each time I pointed it at the program file, it shut itself down. I tried rebooting the whole machine, trashing preferences etc but it wouldn't work.
    the developers were great! got back to me asap. I sent the crash reports and the file I was working on and they discovered a "huge bug"
    Today, they emailed me a link to a FIX which be included in their next version but they allowed me to try it today and guess what? it FIXED it!
    So I started the app and let it run (its over 2 hr program) the app ran for like an hour and put out two new sequences, "unsynced" and "synced"
    but i have some questions;
    there were two cameras and a separate audio recorder.
    in "synced" it lined up the recorder audio with the camera 1 audio but it pushed camera 2 and its audio to the side (further down the timeline)
    of course, what we want is for camera 2 to also be synced (or sunk;-) so when we cut between cameras, the lips are still in sync.
    now how do we get it to line up camera 2?
    screen shot.
    in the "synced" sequence, we need to sync camera 2 with camera 1.
    also, it has left out much of the program in the "synced sequence" there are actually three tapes from each camera. you can see here that we are left with one tape from each camera.
    what do we do from here?
    also, before moving anything around, I can link the tracks but that doesnt stop them from getting out of sync. and locking the tracks means they cannot be moved. so how do you attach the audio to video without getting out of sync?
    .... In the "good ol days" (so Ive heard) editors had years and years to master their craft. Film & Splicing were in power for like what? 75 years?
    Now there are new programs emerging every day with entirely their own learning curve! But if this works just this once, its well worth buying it! its a fantastic app! Im sure it just takes some getting used to!

  • HT201263 how do you put an iphone 4 into recovery mode

    how do you put an iphone 4 into recovery mode

    Locked Out, Forgot Lock or Restrictions Passcode, or Need to Restore Your Device
    1. iTunes 10 for Mac- Update and restore software on iPod, iPhone, or iPad
    2. iOS- Forgotten passcode or device disabled after entering wrong passcode
    3. iPhone, iPad, iPod touch: Wrong passcode results in red disabled screen
    4. iOS- Understanding passcodes
    5. What to Do If You've Forgotten Your iPhone's Passcode
    6. How to Recover Forgotten iPhone Restrictions Passcode | The iPhone and iPad
    7. Restoring iPod touch after forgotten passcode
    8. RecBoot: Easy Way to Put iPhone into Recovery Mode - if all else fails.
    Forgotten Restrictions Passcode Help
    1. How to Recover Forgotten iPhone, iPad Restrictions Passcode
        If this method does not work, then you will need to fully Restore your
        device as New
    Also, see iTunes- Restoring iOS software.
    If none of the above do what you need, then do the following:
    Placing your device into recovery (DFU) mode:
    Follow these steps to place your iOS device into recovery mode. If your iOS device is already in recovery mode, you can proceed immediately to step 6.
       1. Disconnect the USB cable from the iPhone, iPad, or iPod touch, but leave the
           other end of the cable connected to your computer's USB port.
       2. Turn off the device: Press and hold the Sleep/Wake button for a few seconds
           until the red slider appears, then slide the slider. Wait for the device to turn off.
                  * If you cannot turn off the device using the slider, press and hold the
                    Sleep/Wake and Home buttons at the same time. When the device turns off,
                    release the Sleep/Wake and Home buttons.
      3. While pressing and holding the Home button, reconnect the USB cable to the
           device. The device should turn on. Note: If you see the battery charge warning,
           let the device charge for at least ten minutes to ensure that the battery has some
           charge, and then start with step 2 again.
      4. Continue holding the Home button until you see the "Connect to iTunes" screen.
           When this screen appears you can release the Home button:
      5. If necessary, open iTunes. You should see the following "recovery mode" alert:
      6. Use iTunes to restore the device.
    If you don't see the "Connect to iTunes" screen, try these steps again. If you see the "Connect to iTunes" screen but the device does not appear in iTunes, see this article and its related links.
    Additional Information:
    If you have a problem getting into recovery mode then try: RecBoot: Easy Way to Put iPhone into Recovery Mode.
    Note: When using recovery mode, you can only restore the device. All user content on the device will be erased, but if you had previously synced with iTunes on this computer, you can restore from a previous backup. See this article for more information.

Maybe you are looking for

  • Photoshop CS5 Crashing Everytime Try open an image

    Today I rebooted after upgrading to OS 10.6.4. I also ran monolingual to cleanup all languages except english. Everytime I open CS5 now as soon as I try to open an image it crashes. I've disable open gl and the same thing occurs. The report is gives

  • How do I turn off push notifications for apps?

    I made an appointment at the Genius Bar and they told me to go to Settings -> Notification Center and for each app set Alert Style to None. I have done this for every app except the few that I actually want notifications from. It's not working though

  • Not enough Memory (RAM)

    I have a PC windows 7 home premium, and I have the latest adobe updated version 2014 when I open the adobe photoshop and I start working on it, for example I want to use the brush tool with big size, or I want to do "image resize" from 400x600 pixel

  • Why are calendar event colors being changed?

    Something (and it appears to be iCloud related) changed calendar colors on my calendars (not on shared calendars from other accounts). Ideas? I've seen this before. I cannot remember how it got resolved. I updated one of my Macs to the "new" 10.8.5.

  • SUN Solaris Converting JVM to 64-Bit

    Is anyone familiar with the stpes needed to convert a J2EE instance using 32-bit Java to 64-bit on Sun Solaris?  The directory structure on Sun is a bit stange with "sparcv9" directories below /usr/java/bin and usr/java/jre/bin and /usr/java/jre/lib.