how can I send data from a smart door lock to Azure IoT Hub?
@Middleware & OS
Hey guys, how can I send data from a smart door lock device(lock status, access attempts, etc)running on a Raspberry Pi Zero W with Raspbian OS to Microsoft Azure IoT Hub?
Solution:Jump to solution
Firstly you need to create an account on there official site install necessary libraries then your good to go, your code should look like 👇
```python
import time
from azure.iot.device import IoTHubDeviceClient...
1 Reply
Solution
Firstly you need to create an account on there official site install necessary libraries then your good to go, your code should look like 👇
@Boss lady