├── .gitignore ├── Adafruit_BME280.py ├── BME280SensorSimulator.py ├── LICENSE ├── README.md ├── app.py ├── config.py ├── imgs └── success.png ├── setup.sh └── telemetry.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/iot-hub-python-raspberrypi-client-app/HEAD/.gitignore -------------------------------------------------------------------------------- /Adafruit_BME280.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/iot-hub-python-raspberrypi-client-app/HEAD/Adafruit_BME280.py -------------------------------------------------------------------------------- /BME280SensorSimulator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/iot-hub-python-raspberrypi-client-app/HEAD/BME280SensorSimulator.py -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/iot-hub-python-raspberrypi-client-app/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/iot-hub-python-raspberrypi-client-app/HEAD/README.md -------------------------------------------------------------------------------- /app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/iot-hub-python-raspberrypi-client-app/HEAD/app.py -------------------------------------------------------------------------------- /config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/iot-hub-python-raspberrypi-client-app/HEAD/config.py -------------------------------------------------------------------------------- /imgs/success.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/iot-hub-python-raspberrypi-client-app/HEAD/imgs/success.png -------------------------------------------------------------------------------- /setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/iot-hub-python-raspberrypi-client-app/HEAD/setup.sh -------------------------------------------------------------------------------- /telemetry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/iot-hub-python-raspberrypi-client-app/HEAD/telemetry.py --------------------------------------------------------------------------------