simplersble 1.0.1-dev25

The all-in-one Bluetooth library that makes it easy to add wireless connectivity to your projects.
Documentation
#include <simpleble/Config.h>

namespace SimpleBLE {
namespace Config {
    namespace SimpleBluez {
        bool use_system_bus = true;
        std::chrono::steady_clock::duration connection_timeout = std::chrono::seconds(2);
        std::chrono::steady_clock::duration disconnection_timeout = std::chrono::seconds(1);
    }  // namespace SimpleBluez

    namespace WinRT {
        bool experimental_use_own_mta_apartment = true;
        bool experimental_reinitialize_winrt_apartment_on_main_thread = false;
        bool use_deferred_disconnect = true;
    }  // namespace WinRT

    namespace Android {
        ConnectionPriorityRequest connection_priority_request = ConnectionPriorityRequest::DISABLED;
    }  // namespace Android

    namespace Dongl {
        bool use_dongl_backend = false;
        bool auto_update = false;
        bool force_update = false;
    }  // namespace Dongl

}  // namespace Config
}  // namespace SimpleBLE