Last active
December 19, 2022 16:48
-
-
Save mariopesch/61fc8167b84776225ce4d7c7738bba9b to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const boxId = "" // add your boxID | |
const phenomenonId = "" //add your sensorID | |
const apiUrl = (boxId) => `https://api.opensensemap.org/boxes/${boxId}` | |
let widget = await createWidget() | |
if (!config.runsInWidget) { | |
await widget.presentSmall() | |
} | |
Script.setWidget(widget) | |
Script.complete() | |
async function createWidget(items) { | |
const data = await new Request(apiUrl(boxId)).loadJSON() | |
if (!data || !data.name || !data.sensors) { | |
const errorList = new ListWidget() | |
errorList.addText("Keine Ergebnisse für den aktuellen Ort gefunden.") | |
return errorList | |
} | |
const name = data.name | |
const sensors = data.sensors | |
const sensor = sensors.find(sensor => sensor._id == phenomenonId) | |
const list = new ListWidget() | |
if (Device.isUsingDarkAppearance()) { | |
const gradient = new LinearGradient() | |
gradient.colors = [ | |
new Color("111111"), | |
new Color("222222") | |
] | |
list.backgroundGradient = gradient | |
} | |
const header = list.addText(name) | |
header.font = Font.mediumSystemFont(13) | |
list.addSpacer() | |
list.addText(sensor.title) | |
const label = list.addText(sensor.lastMeasurement.value) | |
label.font = Font.boldSystemFont(24) | |
label.textColor = Color.green() | |
var timeStamp = sensor.lastMeasurement.createdAt | |
const date = new Date(timeStamp) | |
var time = list.addText(date.toLocaleString()) | |
time.font = Font.boldSystemFont(8) | |
time.textColor = Color.blue() | |
return list | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment