Packages

Elixir library providing Bluetooth Low Energy (BLE) client functionality through a Rustler NIF. Uses the btleplug crate to scan for, connect to, and interact with BLE peripherals. POC basic functionality and only client (central) mode is supported resp. usable currently.

Current section

Files

Jump to
rustler_btleplug lib application.ex
Raw

lib/application.ex

defmodule RustlerBtleplug.Application do
@moduledoc false
use Application
def start(_type, _args) do
children = [
# {DynamicSupervisor, name: Explorer.Remote.Supervisor, strategy: :one_for_one},
# Explorer.Remote.LocalGC
]
Supervisor.start_link(children, strategy: :one_for_one)
end
end