This package provides pairing and config widgets for BLE configuration.

Features

  • Pairing an Artemis Connect card from the factory settings
  • Configure an already paired card via BLE

Getting started

List prerequisites and provide or point to information on how to start using the package.

Usage

A more complete example is present in the /example folder.

 @override
  Widget build(BuildContext context) {
    return Theme(
      data: ThemeData.dark(),
      child: const SafeArea(
        child: Center(
          child: ArtemisConfigSequence(
            // You can specify the modelId to skip the model selection screen
            // modelId: "YOUR_ARTEMIS_MODEL_ID",
            artemisPrivateKey:
                "YOUR_ARTEMIS_PRIVATE_KEY",
          ),
        ),
      ),
    );
  }

Additional information

For any questions, feel free to contact us at : support@apollocode.ca

Libraries

artemis_pairing