Skip to content

Instantly share code, notes, and snippets.

View AleksCee's full-sized avatar
:octocat:

Alexander Palm AleksCee

:octocat:
View GitHub Profile
@AleksCee
AleksCee / corona-ampel.js
Last active October 23, 2020 17:16
Scriptable iOS widget: Corona Ampel auf Basis der RKI-API
let region = 3 // Niedersachsen
let param = args.widgetParameter
if (param != null && param.length > 0) {
region = param
}
const colors = {35: '#008000', 50: '#CCCC00', 51: '#FF0000'}
const data = await fetchData()