Git Product home page Git Product logo

projectarduinofirsttry's Introduction

https://csharp.hotexamples.com/examples/InTheHand.Net.Sockets/BluetoothClient/Connect/php-bluetoothclient-connect-method-examples.html

EXAMPLE #1

projectArduinoFirstTry

first attempt building gui

File: BluetoothHandler.cs Project: idan573/projectArduinoFirstTry

    public static void MakeConnection(BluetoothAddress btAddress)
    {
        var serviceClass = BluetoothService.SerialPort;
        if (_cli != null)
        {
            _cli.Close();
        }

        _cli = new BluetoothClient();
        var bluetoothDeviceInfos = _cli.DiscoverDevices();
        var deviceInfos = bluetoothDeviceInfos.ToList();
        BluetoothDeviceInfo device = null;
        foreach (var bluetoothDeviceInfo in deviceInfos)
        {
            var scannedDeviceAddress = bluetoothDeviceInfo.DeviceAddress;

            if (scannedDeviceAddress == btAddress)
            {
                device = bluetoothDeviceInfo;
            }
        }

        if (device == null)
        {
            return;
        }

        var ep = new BluetoothEndPoint(device.DeviceAddress, serviceClass);

        try
        {
            if (!device.Connected)
            {
                _cli.Connect(ep);
            }
        }
        catch(System.Net.Sockets.SocketException e)
        {
            _cli.Close();
            _isConnected = false;
            return;
        }

        _isConnected = true;
    }

projectarduinofirsttry's People

Contributors

idan573 avatar friedrichwilhelmnietzsche avatar

Watchers

James Cloos avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.