Generated sending the signals to a remote computer in a network

Hi guys, I am new to Labview and need help. I use Labview to generate a voice modulated signal and I want to send this signal to a remote computer (real-time). How can I do this, so that this voice signal is regenerated in the remote computer?

Hi Sarah, thanks for the advice.

Tags: NI Products

Similar Questions

  • Qosmio G30 - 163 stops sending the signal HDMI

    Hello world

    I really love the Qosmio and took their retirement my G30 to support Media Center functions in our living room. It has replaced my orginal media center that I custome built about two years ago, and never gave me any problems.

    I've also implemented the Qosmio gently and it works great except for one thing. When I switch my TV and turn on again it the TV loses the HDMI signal. It obviously sends a signal to the laptop as its judgment (in standby mode) that the Qosmio means then is to activate the LCD on the laptop automatically, which I don't want. I want to signal to stay on TV. It wasn't a problem with my previous media center, so I'm pretty dumfounded why the Qosmio starts running automatically.

    When I want to get the picture back, I have to open the Qosmio, open display properties select single display (my "other manufacturer" 37 inches) and it works again. It is a pain because I want my qosmio to be permanently anchor because it is by far the BEST salon HTPC ever.

    Can someone help please?

    Thank you
    Erich

    Hey Buddy,

    It seems difficult, maybe there is an option that the qosmio does not recognize the TV signals?
    Be careful in the properties, maybe you can find something.

    I will explore a little for it, I want a Qosmio also and I want the fully automated machine on a platter without the need to touch. (keyboard/mouse wireless and remote control)

    Welcome them

  • SSD drive, Toshiba canvio aeromobile wireless fails to send the signal

    disc ssd wireless works fine.
    copy files readings of wireless works fine
    WIRELESS DSS APP store updated without internet< strange="">
    after update 'wait 5 minutes and reconnect'
    Wireless hard drive fails to send a signal that can be picked up

    Troubleshooting

    Drive hard renovated,
    Reset hardrive with pen (button on the top of the car)
    turned on
    Turned on and waited 10 minutes

    hard drive flashing green on the battery indicator. Blue solid indicator of ssd wfi
    SD card is removed. seeing the card SD is out.

    I am at a loss.

    I have the exact problem right now
    And looks, no Toshiba is interested.

    I'll go back to bnh.com (where I bought the product) and give a BAD comment * 0000

    Posted by benjamin
    disc ssd wireless works fine.
    copy files readings of wireless works fine
    WIRELESS DSS APP store updated without internet< strange="">
    after update 'wait 5 minutes and reconnect'
    Wireless hard drive fails to send a signal that can be picked up

    Troubleshooting

    Drive hard renovated,
    Reset hardrive with pen (button on the top of the car)
    turned on
    Turned on and waited 10 minutes

    hard drive flashing green on the battery indicator. Blue solid indicator of ssd wfi
    SD card is removed. seeing the card SD is out.

    I am at a loss.

  • HDMI is not send the signal on external monitor once the laptop awakens from his sleep

    I have my TV as a second monitor for my laptop. I connected via HDMI. Once I leave my laptop a little past in mode 'sleep' and the screen loses the connection. Once I wake up the laptop, the monitor is not turning back on my desktop. It remains off. I disconnect and reconnect the HDMI and it does nothing. During this operation, my laptop screen flickers as when he connects to it, but nothing happens. My TV does not receive the signal, but the laptop says it's connected. What can I do to fix this? Thank you

    PS. I have to restart my laptop each time to allow to work my external monitor.

    Right-click anywhere in your option chart click homepage > output > and choose computer laptop + moniter

  • Send the signal to a delegate

    Hello

    I have a small question I would like to address. Basically, I have a TabbedPane in my main opinion, each of my tabs are delegated qml files. And I would like to connect the signal "onTriggered" tab to an action of a ListView that is declared in the delegate refreshment. But I don't know how to talk with the content of the delegate outside of it. Is it possible to do?

    Just to make it easier to understand, here's some code. My main page is like this:

    TabbedPane {
        id: mainTab
        showTabsOnActionBar: true
    
        Tab {
            id: tabFav
            title: qsTr("Favorite") + Retranslate.onLocaleOrLanguageChanged
    
            imageSource: "asset:///images/icon_favorites.png"
    
            delegateActivationPolicy: TabDelegateActivationPolicy.ActivateImmediately
    
            onTriggered: {
    
            }
    
            delegate: Delegate {
                id: favorite
                source: "Favorite.qml"
            }
        } //End of favorite tab
    }
    

    And Favorite.qml like this:

    NavigationPane {
        id: nav
    
        Page {
        Container {
                layout: DockLayout { }
    
                ListView {
                    id: listFav
                }
    
                function refresh() {
                   // do some stuff
                }
         }
    }
    

    Is there a way to connect the signal onTriggered from the tab to the refresh() function in the Favorite.qml?

    Thank you very much

    Hello

    Thank you for you answer. This is exactly what I wanted; the idea was: If you have the already active tab and hit again on the tab, it refreshes the display.

    So if someone struck twice on the button, the second time "onActiveTabChanged" is not raised because it is already active, but I want to take this event to refresh the view.

    But I found a solution:

    TabbedPane {
        property variant favController
        property variant pmController
    
        Tab { //Favorite tab
            id: tabFav
            property bool isInitDone: false
            title: qsTr("Favorite") + Retranslate.onLocaleOrLanguageChanged
    
            imageSource: "asset:///images/icon_favorites.png"
    
            delegateActivationPolicy: TabDelegateActivationPolicy.ActivateImmediately
    
            onTriggered: {
                if(isInitDone)
                    favController.getFavorite();
            }
    
            delegate: Delegate {
                id: favorite
                source: "Favorite.qml"
            }
        } //End of favorite tab
    
        Tab {
            id: tabPM
            property bool isInitDone: false
            title: qsTr("Message") + Retranslate.onLocaleOrLanguageChanged
            ActionBar.placement: ActionBarPlacement.OnBar
            imageSource: "asset:///images/icon_mp.png"
            delegateActivationPolicy: TabDelegateActivationPolicy.Default
    
            delegate: Delegate {
                source: "PrivateMessage.qml"
            }
    
            onTriggered: {
                if(isInitDone)
                    pmController.getMessages();
            }
    
        } 
    
        onCreationCompleted: {
            tabFav.isInitDone = true;
        }
    
        onActiveTabChanged: {
    
            if(activeTab == tabFav) {
                tabFav.isInitDone = true;
                tabPM.isInitDone = false;
            }
    
            if(activeTab == tabMP) {
                tabFav.isInitDone = false;
                tabPM.isInitDone = true;
            }
        }
    }
    
    NavigationPane {
    
        Page {
    
            Container {
                layout: DockLayout { }
    
                    ListView {
                      id: listFav
                    }
    
                 attachedObjects: [
                     ListFavoriteController {
                         id: listFavoriteController
    
                     }
                    ]
            }
    
            onCreationCompleted: {
                    listFavoriteController.setListView(listFav);                listFavoriteController.loadView();
    
    // ---------------------------------- NEW --------------------------
                    favController = listFavoriteController;// -----------------------------------------------------------------
                }
        }
    }
    

    So basically, when the Favorite.qml page is created, I provide a pointer to the controller of the TabbedPane. And then, it can process in the 'onTriggered '. I had to manage tab and change to avoid refreshing the page twice, but it seems to do the job.

  • Homegroup is unable to see the documents on a remote computer if their location has been changed by default.

    I have Windows 7 on my Tablet and the office, which are connected by a TP-Link router, and each can see each other via homegroup.  I reinstalled my user documents on the desktop, using the location option on the My Documents Properties screen, because I have the o/s on an SSD and want to keep my documents on a larger hard drive.  The Tablet always looks in the default location for office documents.

    I tried to put a shortcut in the default location of documents on my desk.  The Tablet cannot be the shortcut but can not access - "drive or network connection that the shortcut who wants to say"My Documents - Shortcut.lnk"is not available. Make sure that the disk is properly inserted or the network resource is available and then try again. "So I think that the network can not handle shortcuts (if I place a real file where I can see and open it correctly).

    But it was only a work around - what I really want, it's for the home group point to the location of the correct document rather than the default.  My office has no harm to see and open files on my tablet as it always has in the default location for its user documents.

    Hello

    I suggest you send your query in the TechNet link below and check if it helps.

    http://social.technet.Microsoft.com/forums/en-us/w7itpronetworking/threads

  • Send the signal current/voltage/USB DB25 to regulation of pump to

    Hi all!

    I want to control the speed of a pump with LabVIEW (Thermo Fischer FH100M, Manual) and so I have to send a current or a voltage signal to the pump. The pump has only one DB25 port. As my laptop is not a port DB25, I tried to control it with a USB converter.

    I had only a converter USB to DB9, so I started with (laptop) USB-DB9-DB25 (pump) > >.

    When I connect the pump on the USB port, it is instantly put in market, but in a strange way.

    Is it possible to use this configuration? Or is it possible to use at least USB-> DB25 (I have the Setup, see manual page 45/3-19)? Then, I would order that the cable companies.

    Or do you have other suggestions?

    Thank you very much in advance!

    Tobi

    Tobi,

    Stop it! Do not connect your converter to this device.

    When you say "Converter USB to DB9" are you referring to a USB converter to RS - 232? DB9 is just a connector and therefore DB25. TOU can wire anything to this connector.  Your converter is probably wired as a serial RS-232 port.

    The manual shows clearly on page 3-19 and the following pages that the control of the pump is NOT wired for RS - 232!  By looking at the speicifications for the inputs and outputs you shown on page 3-20 and 21 may damage the USB to RS-232 conveter or the controller of the pump by connecting them.

    To control this device you will need to a DAQ with analog input, analog output, material inputs digital, digital, outputs a counter. You will also need some external circuits such as transistors or relay static solod DC in proportion.

    Lynn

  • IM new to LabVIEW. Is it possible to send the signal to more than one parcel on a chart by using the value property of the graph node

    I'm new to LabVIEW. IAM trying to display two plots on a graph using the node property value charts. I tried to feed the two signals into a signal of fusion and then in the value property node, but it did not work. Then I tried to build a table of two signals and it powers the value of hardware node. It did not work. What escapes me, should I use the node property value this way?


  • Lose the connection to Windows 7 computer on a network, have to reboot several times a day to keep XP & Vista connected computers on it.

    I have a Windows 7, with other Vista and XP computers on a network.  I use MSHOME as the doman. I have disabled the firewall, I disabled Ipv6 on Windows 7 computer.  I use no password on the network.  I have to restart my Windows 7 computer several times a day because regularly it will block other computers and network equipment.  I reboot will allow everyone a new access for a couple of hours, then boom, no one can get to me.  Are there reasons that this could happen?

    Hello

    The question you posted would be better suited in the TechNet Forums. I would recommend posting your query in the Forums of Windows 7 networking.

    http://social.technet.Microsoft.com/forums/en/w7itpronetworking/threads

  • Unable to send arbitrary signals of CC. Help. Please, I beg you.

    Hello people,

    I am a student of Btech working with Labview 2013. I managed to generate an arbitrary Signal through Labview 2013 version for my project. Now, I need to send the signal to Agilent 6642 power supply dc to ampilfication and it will be used for my experience. I am facing problem here.

    I use GPIB USB HS to send the signal, and when I send commands * IDN, is successfully reading and writing, which means I have all my software and drivers installed perfectly. I have installed in my pc control expert and NI MAX.

    I did a program (which is attached) in labview and the GPIB seems to read (signal ACTIVE/Green shows when it is executed).
    But I do not see it in the oscilloscope (Tektronix TDS 2024 B) which means something's wrong here. I need to see the signal as shown in the attached picture.

    I am new to labview and don't know much. Please help me with the Labview program as I want to see the signal in the oscilloscope as well.

    If a command is needed, let me know the order.

    I'm stuck. Help, please.

    Thank you.


  • Generating analog output signals 4 with different frequencies

    Hi all

    I was trying to say to generate 4 different signals at different frequencies

    1. first waveform is a sine wave with 5000 Hz,

    2. other with 8000Hz,

    3. third, one is a square with 25 Hz waveform and

    4. fourth one with triangular waveform 50 Hz

    all waveforms must be generated simultanoeusly.

    I tried to generate with the task unique analog output and sample clock (clock rate is 100000). Cross in scope that I see only 5000 and 8000 Hz we generated correctly and the rest two waveforms show the incorrect frequency.

    I guess that's due to the frequency of high clock to sample for more low frequencies for ex 25 Hz and 50 Hz. If I reduce the clock rate to get the lower frequencies properly so I can't generate frequencies higher correctly. (there's a clsh between frequencies and the clock frequency)

    Is it possible to use DAQ board master sample clock and its magnitude downward revision (everywhere where it is necessary for each waveform separately) to generate all the signals at different frequencies at the same time in a single task?


  • How to share the connection Wireless on my computer Windows 7 Ultimate with my Windows Server 2003 computer?

    I have a computer that is running Windows Server 2003 on which I would like to connect to my ultimate Windows 7 running computer. I did everything it said in the videos and tutorials but I can't get the server to connect to the internet. I can connect via Office remotely, but it can not connect to the internet nor can any computer on my network server see only 7 PC Windows that the server is connected to. help, please!

    Hello

    The question you posted would be better suited to the TechNet community. Please visit the link below to find a community that will provide the support you want.

    http://social.technet.Microsoft.com/forums/en-us/SMS/threads

    Hope this information is useful.

  • or HOW the signal to timer front door stop in while loop?

    Good afternoon

    Could someone please help. I have a project that is very basic. It performs replication of the mastermind game in labview2009 VI. I have managed to do work, but as soon as all the conditions are true my last or door sends the signal for the moment stop button loop.

    In other words, there is no time for my 'congratulations chain' to show before the game resets. What I have to do is to put a timer between the final or gate and my stop button, but all the methods I've tried don't seem to work as the data types do not match.

    Please please please a little help

    Alex


  • Computer not finding networks, stuck on the Logging Off screen in Vista

    For the past two weeks, if I simply close my laptop while it is running, most of the time when I try to open it up my wireless network does not connect automatically. I have to click 'Connect to' in my Start menu and manually connect to the network. The only problem is, sometimes it will fail to find a network and when I try to manually go to 'Connect to', it does nothing. Nothing comes up at all. I have to restart my computer. Once I try to restart, it sticks on the screen "Logging Off". I also tried to disconnect just opened a session back, but it's still stuck on this screen. I am then forced to make a hard closed down by holding down the power button.

    Any ideas?

    See the article below for instructions on how to start your computer in a clean boot state.
    How to troubleshoot a problem by performing a clean boot in Windows Vista or in Windows 7
    http://support.Microsoft.com/kb/929135
    Hello
     
    1. you broadcast the SSID of the wireless network?
    2. have you idea of changing the settings of the preferred wireless networks?
     
    Method 1.
    Try to change the order in which your computer connects to the network.
    The list of networks connected to before is sometimes referred to as your preferred wireless networks or your preferred list.
    a. open manage wireless networks by clicking the Start button, click Control Panel, click Network and Internet, click Network and sharing Center, and then, in the left pane, click on manage wireless networks.
    b. your saved wireless networks is displayed. To change the order in which your computer connects to networks, drag the networks upwards or downwards in the list.
    c. to change preferences for the network, right-click the network, and then click Properties.
     

    Method 3.
    Also the question of trial in the State of clean boot and check. You can also check the shutdown problems in the boot.
    See the article below for instructions on how to start your computer in a clean boot state.
    How to troubleshoot a problem by performing a clean boot in Windows Vista or in Windows 7
    http://support.Microsoft.com/kb/929135
    Note: When the diagnosis is complete, don't forget to reset your computer to normal startup. Follow step 7 in the above article.

     
    Method 4.
    Also check the eventviewer on stop error logs.
    Type eventvwr.msc/s in the address bar.
    The list of all the events that are listed as 'Error' in the main window when you go to 'Newspapers Windows' and 'Application '. There is often a large number of them. Send us any ones you see listed for the last few days. (Please also do it for the log files in 'System'). When you do, provide us the name of the 'Source' and all that is listed in the description below the list of newspapers box when you click on one.

    For more information on event viewer, see the articles below:
    Open event viewer
    http://Windows.Microsoft.com/en-us/Windows7/open-Event-Viewer

    What are the information contained in the logs of the event (Event Viewer)?


    http://Windows.Microsoft.com/en-us/Windows7/what-information-appears-in-event-logs-Event-Viewer

    I hope this helps.

    Thank you, and in what concerns:
    Shekhar S - Microsoft technical support.

    Visit our Microsoft answers feedback Forum and let us know what you think.
    If this post can help solve your problem, please click the 'Mark as answer' or 'Useful' at the top of this message. Marking a post as answer, or relatively useful, you help others find the answer more quickly.

  • Another computeron the network has the same IP as this computer.

    How to solve the problem in another pc using the same IP as this computer on this network.

    Whenever you get the error message, after the output of the command ipconfig/all.

    Just for some information:

    They say to contact your network administrator, they assume you're in a larger network with it professionals, for example a company.

    You are most probably obtain your address dynamically, ipconfig/all will allow me to know for sure.

Maybe you are looking for

  • I have open tabs, I do not see

    I don't see any tabs open - and I would like to close some of them. I can't find a "old firefox data" folder on my desktop. I'm on a MacBook. Thanks for your help

  • 10.2.3 crash at startup

    Since the update I get a crash at startup or when you choose a template. I tried to create a new user and with the new logical user not crushed (seen a video on youtube on this subject). Anyway to fix that works in my usual user?

  • iMac connects to the router of Linkysys WRT1900ac

    I am trying to help a friend get his iMac 12.1, that is running 10.11.4, to connect to a new Linksys WRT1900ac router.  The router is a novelty in this House, is in the same room of 10 x 12, as the computers listed below, and the installer was using

  • Warranty period for Pavilion g6-2301AX

    Hello I bought this hp Pavilion g6-2301AX only today, the product comes with one year warranty. But when I check-in to see the guarantee of update on hp support assistant it shows: Standard warranty beginning 25/04/2013 Date of end of standard warran

  • How to disable the database 64 MB of memory on Satellite Pro 4270?

    Hello! On my own SP4270 Win2000Pro install case that I came to the conclusion that the problem reside on the base 64 MB of memory on the motherboard, which had deserted somehow 1.1 MB, and so more big programs will not load and the installation proce