From ed8ea8d82cba0d3485f88e088e082f60cda6d59b Mon Sep 17 00:00:00 2001 From: brentru Date: Thu, 27 Feb 2025 15:04:42 -0500 Subject: [PATCH] Add offline file --- WipperSnapper_Offline/config.json | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100755 WipperSnapper_Offline/config.json diff --git a/WipperSnapper_Offline/config.json b/WipperSnapper_Offline/config.json new file mode 100755 index 000000000..3a01049f5 --- /dev/null +++ b/WipperSnapper_Offline/config.json @@ -0,0 +1,25 @@ +{ + "exportedFromDevice": { + "referenceVoltage": 3.3, + "totalGPIOPins": 18, + "totalAnalogPins": 4, + "sd_cs_pin": 23, + "statusLEDBrightness": 0.5 + }, + "components": [ + { + "name": "BME280 Sensor", + "componentAPI": "i2c", + "i2cDeviceName": "bme280", + "period": 15, + "i2cDeviceAddress": "0x77", + "i2cDeviceSensorTypes": [ + {"type": "relative-humidity"}, + {"type": "ambient-temp"}, + {"type": "ambient-temp-fahrenheit"}, + {"type": "pressure"}, + {"type": "altitude"} + ] + } + ] +}