How to communicate with third party bluetooth device using LAbVIEW

Hi
      I am trying to communicate with a third party bluetooth device using LabVIEW, I am using a bluetooth dongle. I am able to discover the device and able to open the connection by specifying the service as serial port. But after that when I am trying to read and write data between LabVIEW and the bluetooth device (using Bluetooth Read & Bluetooth Write functions) its not happening.
Dose anybody faced same kind of issue if so kindly guide me, this is first time I am using Blutooth protocol.
Regards
Visuman 

Hi,
I am able to talk with bluetooth / serial devices by using Labview protocol (not Wii dll). These are steps:
      Discover the bluetooth device in range (Bluetooth dicover.vi)
      Get the address of the device
      Pass device address to Bluetooth RFCOMM Service Discovery.vi to get service list
      Pass channel and uuid to Bluetooth open connection
      After that do write and read (Bluetooth Write / Bluetooth read).
  I hope it works for you.
Take care
tp
 

Similar Messages

  • How Bridge communicates with third party applications?

    Hi,
    Is it possible to communicate between Adobe Bridge and a third party application using Bridge SDK?
    I want to learn how Bridge can communicate with other application? Bridge SDK have samples that explain how Bridge communicates with other Adobe applications like Photoshop and Indesign. Can anyone guide me or provide me a sample where Bridge communicates with a third party application?
    Thanks.

    As an example, this shows one way of getting a list of selected files from Bridge via Photoshop using C#
    using System;
    using System.Collections;
    using ps = Photoshop;
    namespace getBridgeFiles
        class Program
            static void Main(string[] args)
                ps.ApplicationClass app = new ps.ApplicationClass();
                String Code = "var fileList;"+
    "if ( BridgeTalk.isRunning( 'bridge' ) ) {"+
    "var bt = new BridgeTalk();"+
    "bt.target = 'bridge';"+
    "bt.body = 'var theFiles = photoshop.getBridgeFileListForAutomateCommand();theFiles.toSource();';"+
    "bt.onResult = function( inBT ) { fileList = eval( inBT.body ); }"+
    "bt.onError = function( inBT ) { fileList = new Array(); }"+
    "bt.send(8);"+
    "bt.pump();"+
    "var timeOutAt = ( new Date() ).getTime() + 5000;"+
    "var currentTime = ( new Date() ).getTime();"+
    "while ( ( currentTime < timeOutAt ) && ( undefined == fileList ) ) {"+
    "bt.pump();"+
    "$.sleep( 100 );"+
    "currentTime = ( new Date() ).getTime();"+
    "}}"+
    "if ( undefined == fileList ) {"+
    "fileList = new Array();}"+
    "fileList = decodeURI(fileList.toString());";
                String RC =  app.DoJavaScript(Code, null, null);
                ArrayList list = new ArrayList();
                list.AddRange(RC.Split(new char[] { ',' }));
                for (int index = 0; index < list.Count; index++){
                    Console.WriteLine(list[index]);
                Console.ReadLine();

  • RTP Media Stream with "Third Party SIP Device" always through CUCM

    Hello,
    i have i quite strage problem on one of my customers locations:
    we have a cucm 7.1.5(SU4) with the cucm in the datacenter. And we have a small location(branch office) which has a small wan connection to the datacenter (1MBit/s).
    In this location we have several Kirk (Polycom) Dect phones which register as "Third Party SIP Device - Basic" on the CUCM.
    (The problem is the same if i use the X-Lite SIP Client instead)
    When this SIP Phones or the X-Lite Client dials a internal Number of the same location the RTP Media Streams goes directly from the SIP Client to the phone. But if they dial an external number the RTP Stream goes from the SIP Client via the wan connection to the CUCM and back via the wan connection to the 2901 H.323 Gateway (on the same location).
    and of course if i now start a big download or upload i'm no longe able to complete the phone call because we have no QOS on the wan connection, because we don't want to make calls over this connection.
    When i look at the Sniffer files with Wireshark i see that the CUCM sends his own ip adresse in the SDP Header for the RTP Stream to the SIP Client. And this of course is wrong because the RTP Stream should always reside on the branch office.
    i tested this in my lab (CUCM 8.5) and it is the same. i used the "Standard SIP Profile" and a Basic Third Party SIP Device"
    The SCCP Phones on the same location which are configured with the same Region, Location, Device Pools, Media Resources and which use the same Gateway for external calls do not have this problem.
    In the Gateway configuration "MTP Required" is not activated and i tested it in my lab with some Cisco SIP Phones (9971) and they are also not affacted with this problem.
    any ideas?

    do you have a SIP trunk to the external devices with MTP required checked ?

  • CUOM with Third-party SIP Device

    Hi everyone,
    I have installed CUOM in environment with CUCM, Cisco IPPhones (SCCP), and IPPhones (Third-party SIP Device), I can monitor CUCM and SCCP IPPhones but the Third-party SIP Device can't be monitored with CUOM, Please someone have a solution for this issue
    Thanks in advance,

    do you have a SIP trunk to the external devices with MTP required checked ?

  • How to Integrate with third party tool from peoplesoft

    Hi
    I have one page and in that a Loan Request button is there.
    My requiremt is - once employee clicks the loan request button the third party window has to open with deatails of that particular employee eg: some particular informations like ssn,dob etc.
    Please help me achieve this by detailed explanation including setups and coding.
    Thanks
    PS

    Hi
    I am able to open third part link and enter the datas as required in that page.
    Please help me on second phase of the requirement:
    Now once the employe enter the details like ssn and dob and click submit.Based on that ssn and dob,peoplesoft system has to send datas like pay details etc to third party system.
    Please help me to solve this.It will great if i get step by step details including code and setup if required
    Thanks
    PS

  • Trying to get data from a bluetooth device using labview. Can anyone help?

    I am currently working on a project to monitor pulse rate and need send the reading via bluetooth. My laptop is bluetooth enabled and is using a toshiba stack. I am new to LabView and need some help with this.
    Message Edited by Iceberg D4 on 05-05-2009 10:58 AM

    You can definitely do this using LabVIEW. Search for labview bluetooth on NIs website to look for articles and documentation with regards to this. One thing I noticed and would like to point out:
    On Windows XP - LabVIEW works with Bluetooth devices that use the Microsoft Bluetooth
    driver included with Windows XP Service Pack 2 and later. Refer to the
    Microsoft Web site for Bluetooth devices that are supported by the
    Microsoft Bluetooth driver. Most Bluetooth devices come packaged with a
    proprietary Bluetooth driver. To use the device with LabVIEW, the
    Bluetooth adapter must be using the Microsoft Bluetooth driver. A
    Microsoft Bluetooth driver for Windows XP SP1 was also available. Refer
    to Microsoft Knowledge Base Article 323183: Availability of Windows XP Service Pack 1 Support for Bluetooth Wireless Devices for more information about Bluetooth-compatible operating systems.
    Have a look at the following:
    http://zone.ni.com/devzone/cda/tut/p/id/3260
    http://zone.ni.com/reference/en-XX/help/371361E-01/lvcomm/bluetooth_vis/
    Adnan Zafar
    Certified LabVIEW Architect
    Coleman Technologies

  • I m studen t of MS i develop a new CDMA reciver , how i can implement this on ni devices using labview

    i want to know the hardware which i should use and how i can use labview .
    i use matlab for developing code

    The following link should be helpful. I let you have a look.
    How to make Matlab and Labview work together?
    Regards.
    Romain D.
    National Instruments France
    #adMrkt{text-align: center;font-size:11px; font-weight: bold;} #adMrkt a {text-decoration: none;} #adMrkt a:hover{font-size: 9px;} #adMrkt a span{display: none;} #adMrkt a:hover span{display: block;}
    NIDays 2010 : Conférence mondiale de l'instrumentation virtuelle
    >>Détails et Inscription<<

  • HT204387 I have third party bluetooth that used to work perfectly with IOS 6.1 but now I install IOS 7 and now some of the function on my bluetooth doesn't work.

    I like to know anyone having problems with bluetooth functions with new IOS 7 ?

    I have the same problem with my iPhone4 connected to my VW car via bluetooth. In the previous version of iOS I could start and stop and change tracks in for example Spoitify with my steering wheel buttons but now with iOS 7 it doesn't work anymore.... Apple please correct this ASAP...

  • How  to communicate with a remote application that uses http post to request connection

    Ok, I will try to make this simple as to avoid any
    confusion.
    I am trying to receive connection requests from remote applications installed on user pc's.
    The application uses POST method to send the request to connect to my database, and if required update some tables.
    The application is not a webpage. I have no access to the internal workings of the application nor do I have any specific information about how it sends its POST. I am sure of the following:
    The app will POST to my .cfm page
    "IsConnectionAllowed" = "yes"
    This is asking my cfm page if its ok to connect. I would need to use a <cfif> to verify the the first part of the POST is in fact
    "IsConnectionAllowed" = "yes"
    If this returns true, (the app also uses to POST to pass "username" and "password") my .cfm page will then perform a query and check the username and password against the database. If a matching record is found, the application expects my page to reply with
    "#Answer# OK- connected;"
    Once the answer is given the application will then respond with data to insert or update my tables.
    Now, I know how to do the queries and update tables etc, but I have never received data from an application before.
    I tried using the <cfform> tag with a mehod of GET, and then trying to send my reply with <cfoutput>, but that didn't work. The application doesn't give any feedback or error messages. It either connects or not.
    I also tried the <cfhttp> tag, but that didnt work either. I am not very experinced with coldfusion. I used it years ago and am just getting back into it.
    I am sure this is a pretty easy thing to do, but my methods arent working.
    Using the above information, can somone please show me how I would accomplish this communication? I can then use the same method to retrieve the data for my table updates and queries.
    Here is a sample of what I have already tried:
    <cfform method="get">
    <cfif>
    "IsConnectionAllowed" = "yes"
    <!-- I need to query a username or password. But for testing I will just give the OK to connect -->
    <cfoutput>#Answer# Ok - connected;</cfoutput>
    <cfelse>
    <!-- When I query username and password, if the query returns no records I deny the connection -->
    <cfoutput>#Answer# Not connected;</cfoutput>
    </cfif>
    </cfform>
    BTW, I have examples of this being done using .php and .asp. I need to do this using .cfm. I can post the either the .php or.asp code if it will be helpful in converting the function into a .cfm page.

    Thanks Fernis.
    That code allowed me to connect!
    I have an error on the remote application, but I think thats due to the fact that I commented out the database connection and query strings. As I am mostly concerned with connection at this point, I just wanted to test that my cfm page will recognise the POST request and send the right answer, In this case
    ##Answer## Ok - connected;
    That worked perfectly and the application received the ok to connect.
    I can now use your code as a base to carry on with my database connection and update query.
    I can't thank you enough. I wouldnt have figured that out in a million years of trial and error.
    I knew it was simple though. I was over thinking it.
    I do have one last question though... In the code you presented you have
    <cfif structKeyExists(Form,"isConnectionAllowed") AND form.isConnectionAllowed EQ "yes">
    Can you you explain this    structKeyExists(Form,"isConnectionAllowed")
    I have never seen this before. Why the Form followed by a comma? I am guessing you are asking if there is an element in the POST called "isConnectionAllowed". Is that correct?  If so, do I not need to do that for each POST'ed element such as username, password, and each of the other fields that will be updated in the session?

  • OSB -How to communicate with a Asynchronous SOAP Service using OSB

    Hi,
    I am new to OSB and I need some help in working with Asynchronous SOAP Service.
    Test Case : OSB --> Proxy Service --> Business Service-->External Service pointing to Asynchronous service WSDL.
    While testing the proxy service using sb console i don't get a response back.
    After some googling I found out the following:
    ->We need to create another Proxy service for listening to callback from that Asynchronous service.
    ->Setting the "WS-replyTo" in header variable while sending the initial request to Business Service(pointing to Asynch wsdl).
    Even after this I am not getting some response.
    Questions :
    1. Can someone let me know in detailed way(end to end) what has to be done to achieve this ?
    2. The Asynch wsdl exposes only one port in the <service> tag ie., which is haing the binding related to "process" operation. ( but not processCallback operation)
    So in this case how do i make my responseProxy service listen to callback port ? When I try to do I just see the process binding only.
    Thanks and Regards,
    Sridhar.

    Vernetto,
    I am not sure about the publish, but yes we can do this without JMS also. Please refer to this post which is quite helpful which routes back to a proxy service.
    http://eelzinga.wordpress.com/2010/03/23/oracle-service-bus-invoke-asynchronous-webservices/
    Regards,
    Sridhar.

  • Activate a call forward with a Third-party SIP Device or with a analog device

    Hi,
    In a CUCMv9, how i can activate a call forward (all, busy, no anwser...) with Third-party SIP Device or with a analog device connected to a fxs?
    I want to activate a call forward like a Alcatel or Aastra PBX with a code.
    For exemple, i pick up the phone, with the code *95 followed by the destination number and hangs up the phone. And use the #95 for désactivate this call forward.
    It's possible?
    Thanks.

    No codes for 3rd party SIP phones, no way to do it. Or for that matter, not even for Cisco Phones, other than CFA.
    Anything besides CFA needs to be done via CCMadmin or CCMuser for any kind of phone.
    For FXS that's only doable if you're running SCCP
    http://www.cisco.com/en/US/partner/docs/ios/voice/fxs/configuration/guide/fxssccpsplmft.html
    HTH
    java
    if this helps, please rate
    www.cisco.com/go/pdihelpdesk

  • Interact with third-party applications

    Do anybody have a try to Interact with third-party applications when using CQ5?
    I have some questions when I do that, when I use ajax to get data from my custom application,it always return error message,below is my ajax code:
    function getMinisiteList(){
              var sendUrl="http://localhost:8088/innosite/minisite/home.json";
              $.ajax({
                        url : sendUrl,
                        type : "post",
                        dataType : "json",
                        success : function(data) {
              alert(data);
                        error : function(XMLHttpRequest,
                                            textStatus, errorThrown) {
                                       alert(XMLHttpRequest.status);
            alert(XMLHttpRequest.readyState);
            alert(textStatus);
    I think my ajax request is Intercepted by CQ,is it right? How can I do that? Can anybody answer me?
    thank you very much!

    Is this a cross-site request? In other words, is JavaScript above being executed on localhost:8080? If not, you are likely running into a cross-domain browser security restriction.

  • How to integrate single sign on with third party system

    we are in the process of implementing istore application. we already have home grown isupport application to contact support personnal for any issues. Now we are wondering how do we integrate oracle applications single sign on with our third pary system. Is there any recommendation provided by oracle to achieve the same.

    We too are in the process of implementing iStore with SSO features.
    And if you believe me it seems to me as nightmare.
    In our scenerio we are intgrating this SSO with Third party access control too (AD and Siteminder). I would request you to please respond me on the following mail id , so we can share our experince which will help us in our implementation
    [email protected]
    regards and thanks in advance
    Vikas Deep

  • How to connect Developer 6i with third party Databases

    How to connect Developer 6i with third party Databases

    Hi,
    Oracle Forms 6i comes with a Oracle Client Adaptor, OCA, that allows you to connect to 3rd party databases. Starting Forms 9i you use gateways.
    Frank

  • Really Apple? OSX 10.8.5 disables built-in camera functionality with third party apps such as Skype and Gmail video chat. I do not have time machine on my 2013 MB Air. How can I get back to 10.8.4?

    Really Apple?
    With the release OSX 10.8.5 Apple has once again showed its true colors, and continued its efforts to create a closed Apple system, which eliminates third party vendors, unless, one can only assume... they pay.
    Included in this OSX update is the disabling of the built-in camera to work with third party applications such as Skype and Gmail video chat. No surprise the camera works just fine with Apple apps such as Facetime and Photobooth.
    The answer I got on my call to AppleCare to ask for assistance in reinstalling 10.8.4, so that I may Skype again, was we can not do that. You can not go back unless you have a time machine bkup.
    Can anyone help me get back to to 10.8.4 on my 2013 MB Air?
    I do not have a time machine bkup as this computer is not used to store important documents.
    Thank you.

    Read this post: 10.8.5 Broke Camera Usage For 3rd Party Apps Like Skype
    Another: isight not recognized in Skype after 10.8.5 upgrade
    Don't panic. Skype simply needs to update its app.

Maybe you are looking for

  • Availablity check at storage location level in STO

    Hi,   There is an unique requirement from my client with respect to the Availability check at storage location level in STO Process:   Based  on the inputs from APO we are creating STR for moving the material from one plant to another plant. These ST

  • Create a new Section in Pages Beta

    I've uploaded my Pages document in which I create new sections to modify the Header I use. Can't see how to create a new section in iCloud Pages Beta.

  • Dual Monitor Problem: White Slug

    I have a dual monitor display setup and whenever I enable View>External Video>All Frames instead of displaying video it displays a white slug. Ive tried to refresh A/V devices and it still doesn't work. I am using two GeForce 7300 GTs.

  • Sub-routines in scripts

    Hi Everybody,              i have copied the standard script F140_DOCU_EXC_01 into zf140_doc, in that form i need to caluculate Net amount in text element 521 in main window. for that i have written the subroutine. PERFORM <subroutin_name> IN PROGRAM

  • Problem upgrading from Photoshop CS2 to CS4 Extended

    I purchased the retail box Photoshop CS4 Extended Upgrade (Windows) from a retail store ($349.99 + tax). I am upgrading from Photoshop CS2 and this is the version that the Adobe website says to purchase for this upgrade path. The problem is that CS4