# IoT Hub Device Connection String
#
# To find your device connection string:
# 1. Go to Azure Portal (https://portal.azure.com)
# 2. Navigate to your IoT Hub (W26-Hub)
# 3. In the left menu, under "Device management", click "Devices"
# 4. Click "+ Add Device"
# 5. Enter a Device ID (e.g., "temp-sensor-01")
# 6. Leave other settings as default and click "Save"
# 7. Click on your newly created device
# 8. Copy the "Primary Connection String"
#    It looks like: HostName=W26-Hub.azure-devices.net;DeviceId=temp-sensor-01;SharedAccessKey=...
# 9. Paste it below

DEVICE_CONNECTION_STRING=...

# How often to send telemetry (in milliseconds)
# 30000 = 30 seconds (recommended for free tier)
TELEMETRY_INTERVAL=30000
