使用 Google Firebase 的物联网设备 management/onboarding

IoT device management/onboarding with Google Firebase

我正在寻找 Google 的 Firebase 服务中存在的类似 AWS 设备管理功能 (https://aws.amazon.com/iot-device-management/) 的东西。

我发现了这个:https://cloud.google.com/community/tutorials/cloud-iot-firestore-config

但我不确定我是否可以实现与 AWS IoT 设备管理相同的功能(我还是 Firebase 的新手)。

是否有与 AWS IoT Device Management 等效的 Firebase,特别是关于入职和组织?

Firebase 中没有等效项。

如前所述,不,Firebase 中没有任何内容。

你看过Cloud IoT Core了吗?它具有许多您可能在设备管理器中寻找的功能。从那里开始,有数据管道工具(如 Google Cloud Functions 或 Cloud Dataflow)可以将遥测数据从您的设备传送到 Firebase(或者,可能是更好的选择,Firestore)。

我在今年(2018 年)的 Google Cloud Next 会议上做了一个 session,讨论了 end-to-end IoT 应用程序,我们发布了我们在舞台上构建的代码包括 IoT 设备管理,如果您有兴趣,可以使用 Cloud Functions 将数据推送到 Firestore。 Link 可以找到 here。将数据移至 Firestore 的 Cloud Functions 位于 gcf 文件夹中。设备文件夹包含我们在设备上用于将遥测数据发送到 IoT Core 的 Python 代码。