Giter VIP home page Giter VIP logo

swiftlinuxble's Introduction

SwiftLinuxBLE

SwiftLinuxBLE is a lightweight convenience wrapper for the PureSwift BluetoothLinux library.

It enables you to very quickly create a BLE GATT peripheral on linux (for example, on the Raspberry Pi).

Usage

Create a Service for each service you want to expose. Use the @SwiftLinuxBLE.Characteristic propertyWrapper for each characteristic. The peripheral will automagically track changes to each characteristic and will also write to them.

final class TemperatureService : SwiftLinuxBLE.Service {
    let uuid = BluetoothUUID(rawValue: "88d738cc-bdd0-485b-b197-b7186ff534e4")!
    
    // Characteristics
    @SwiftLinuxBLE.Characteristic(uuid: BluetoothUUID(), [.read, .notify])
    var temperature = 7.0
       
    @SwiftLinuxBLE.Characteristic(uuid: BluetoothUUID(), [.write])
    var tx = Data()
    
    @SwiftLinuxBLE.Characteristic(uuid: BluetoothUUID(), [.read, .notify])
    var rx = Data()
}
  1. Create a Peripheral class and add each service.
public final class ThermometerPeripheral : SwiftLinuxBLE.Peripheral {
    
    public let peripheral: GATTPeripheral<HostController, L2CAPSocket>
    let name: GAPCompleteLocalName = "Ferment"
    let iBeaconUUID = UUID(rawValue: "1DC24957-9DDA-46C4-88D4-3D3640CB3FDA")!
    
    public var services: [SwiftLinuxBLE.Service] = []
    public var characteristicsByHandle = [UInt16: CharacteristicType]()
    
    public init(hostController: HostController) throws {
        peripheral = try hostController.newPeripheral()
        
        add(service: TemperatureService())
                
        // Start peripheral
        try peripheral.start()
        print("BLE Peripheral started")
                       
        try advertise(name: name, services: services, iBeaconUUID: iBeaconUUID)
        
        peripheral.didWrite = didWrite
    }
}

Example:

Check out the SwiftLinuxGATTServerExample for a working example.

swiftlinuxble's People

Contributors

alex-alex avatar kevinbrewster avatar kubacizek 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.