OldMoofKit

0.0.4

A Swift Package to communicate with older VanMoof bikes, such as SmartBike, SmartS/X, Electrified S/X or S/X2
Jegge/OldMoofKit

What's New

Maintenance fix / Updated for iOS 17

2024-02-27T16:45:18Z
  • Fixed web api query not working correctly anymore with iOS 17
  • Small fixes

Tested on GitHub Actions GitHub GitHub issues Static Badge Mastodon Follow

OldMoofKit

A Swift Package to communicate with older VanMoof bikes, such as SmartBike, SmartS/X, Electrified S/X or S/X2

import OldMoofKit

let bike = try await Bike(username: "Johnny Mnemonic", password: "swordfish") // queries the vanmoof web api
try await bike.connect()
try await bike.playSound(.bell)
try await bike.set(lock: .unlocked)
bike.disconnect()

Disclaimer

OldMoofKit is not an official library of VanMoof B.V. This Swift Package hasn't reached an official stable version, so some features may not work as expected. You use this library solely at your own risk.

Features

  • Establish a bluetooth connection to a VanMoof Bike using async/await
  • Lock or unlock your bike
  • Change the bike settings: light, motor assistance, ...
  • Combine support to react to value changes

Supported bikes

Model Supported Tested Alternatives
SmartBike vanbike-lib
SmartS/X vanbike-lib
Electrified S/X vanbike-lib
S/X 2 vanbike-lib
S/X 3 VanMoofKit, PyMoof

Installation

Swift Package Manager

To integrate using Apple's Swift Package Manager, add the following as a dependency to your Package.swift:

dependencies: [
    .package(url: "https://github.com/Jegge/OldMoofKit.git", from: "0.0.3")
]

Or navigate to your Xcode project then select Swift Packages, click the “+” icon and search for OldMoofKit.

Info.plist

As the OldMoofKit is using the CoreBluetooth framework to establish a BLE connection to a bike the NSBluetoothAlwaysUsageDescription key needs to be added to the Info.plist of your application.

<key>NSBluetoothAlwaysUsageDescription</key>
<string>Establishing a bluetooth connection to your VanMoof Bike.</string>

How to get a bike

From VanMoof web api

To initially get a bike, connect to the VanMoof web api and retrieve the first bike.

let bike = try await Bike(username: "Johnny Mnemonic", password: "swordfish")

If you own several bikes, you need to download the details separately.

var api = VanMoof(apiUrl: VanMoof.Api.url, apiKey: VanMoof.Api.key)
try await api.authenticate(username: "Johnny Mnemonic", password: "swordfish")
let allDetails = try await api.bikeDetails()
let details = allDetails.first! // select one element from allDetails
let bike = try await Bike(scanningForBikeMatchingDetails: details)

Manually from details

If you already have your bike details, e.g. because you have downloaded them earlier from the VanMoof site, you can construct the bike details manually.

let details = try BikeDetails(bleProfile: .smartbike2016, macAddress: "12:34:56:78:9A:BC", encryptionKey: "00112233445566778899aabbccddeeff")
let bike = try await Bike(scanningForBikeMatchingDetails: details)

Note: Make sure that you've got the bleProfile, the macAddress and the encryptionKey correct, otherwise the connection will not be established. The other parameters are solely flavour text.

Note: The MAC address has to be entered in MAC-48 format.

Note: The encryption key has to be exactely 16 bytes long and has to be entered as hex string.

Codable

Bikes implements Codable and thus can be serialized / deserialized should the need arise.

// store a bike as data
let data = try? JSONEncoder().encode(bike)

// read another bike back from data
let otherBike = JSONDecoder().decode(Bike.self, from: data)

Connection

Connecting a bike is straight forward, just call the connect method.

try await bike.connect()

The bike will stay connected (and in fact automatically re-establish a broken connection) as long as you do not manually disconnect it.

bike.disconnect()

To retrieve the current connection state, query the bike's state:

let state = bike.state
switch state {
    case .connected:
        // do something when connection get (re-)established
    case .disconnected:
        // do something when connection drops or closes
}

You may also subscribe ot the statePublisher and be informed when the current state changes.

let subscription: AnyCancellable = bike.statePublisher.receive(on: RunLoop.main).sink { state in
    // react to state ...
}

subscription.cancel()

Note: Make sure to receive the state changes on the correct thread.

Note: When disconnecting, do not forget to cancel your subscription.

Errors

The bike has a dedicated errorPublisher, that you can subscribe to to get error messages.

let subscription: AnyCancellable = bike.errorPublisher.receive(on: RunLoop.main).sink { error in
    // react to the error
    print("Error: \(error))
}

subscription.cancel()

Note: Make sure to receive the state changes on the correct thread.

Note: When disconnecting, do not forget to cancel your subscription.

Getting, observing and setting bike properties

The bike has all kind of properties that represent the current known state of the bike, as:

  • lock (locked, unlocked)
  • alarm (on, off, automatic)
  • lighting (always on, automatic, off)
  • batteryLevel and batteryState (percent charged and charging or discharching)
  • moduleState (sleeping, off, on)
  • errorCode (raw data, depending on the bike model)
  • motorAssistance (off, one, two, three, four)
  • mutedSounds (wake up sound, shutdown sound, lock sound, unlock sound)
  • speed (current speed in km/h)
  • distance (distance in km)
  • region (eu, us, japan, offroad)
  • unit (metric, imperial)
let lighting = bike.lighting

Note: if your bike does not support a properity, it's value will be nil.

For each property there is an associated Publisher that allows monitoring changes of value.

let subscription: AnyCancellable = bike.lightingPublisher.receive(on: RunLoop.main).sink { state in
    // do something when lighting changed ...
}

subscription.cancel()

Note: Make sure to receive the state changes on the correct thread.

Note: When disconnecting, do not forget to cancel your subscription.

Each property is complemented by a setter. Calling this setter transmits the value directly to the bike. The bike then will send a notification and the according property will get updated upon receiving that notification. If your bike does not support a property, calling the setter will be ignored.

try await bike.set(lighting: .alwaysOn)

Note: setting the region of your e-bike to a value not corresponding to your country may be illegal in some jurisdictions. Use at your own risk.

Other functions

Play sounds

try await bike.playSound(.bell, 3) // play the bell sound thrice

Setting backup code

try await bike.set(backupCode: 123) // sets 123 as new backup code

Waking the bike

Sometimes the bike may not immediately react to configuration changes, because it's smart module is sleeping. To make sure that your command gets executed even after the bike went to sleep, you can wake it up again. When wakeup returns, the command has been sent to the bike. It may still be on .standby at this moment. To be sure that the bike is awake, consider listening the the moduleStatePublisher.

try await bike.wakeup()

Credits and inspirations

License

MIT License

Copyright (c) 2023 Sebastian Boettcher

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

Description

  • Swift Tools 5.7.0
View More Packages from this Author

Dependencies

  • None
Last updated: Tue Apr 30 2024 07:34:26 GMT-0900 (Hawaii-Aleutian Daylight Time)