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
<a id="link">...</a> | |
<script src="https://cdn.sharptools.io/js/custom-tiles/0.2.1/stio.js"></script> | |
<script> | |
var anchorEl = document.getElementById("link") | |
stio.ready(function(data){ | |
var urlVar = data.settings.urlVar; | |
var textValue = data.settings.textValue; |
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
<div id="main"> | |
<img id="icon" /> | |
<div id="value"></div> | |
</div> | |
<script src="https://cdn.sharptools.io/js/custom-tiles/0.2.1/stio.js"></script> | |
<script> | |
var valueEl = document.getElementById("value") | |
var iconEl = document.getElementById("icon") |
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
<!-- Do not edit below --> | |
<script type="application/json" id="tile-settings"> | |
{ | |
"schema": "0.2.0", | |
"settings": [ | |
{ | |
"type": "THING", | |
"name": "myThing", | |
"label": "Your Thing", | |
"filters": {"capabilities": ["switch"]} |
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
<!-- Do not edit below --> | |
<script type="application/json" id="tile-settings"> | |
{ | |
"schema": "0.2.0", | |
"settings": [ | |
{ | |
"type": "VARIABLE", | |
"name": "myString", | |
"label": "Your Text Variable", | |
"filters": {"type": "String"} |
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
<!-- Do not edit below --> | |
<script type="application/json" id="tile-settings"> | |
{ | |
"schema": "0.1.0", | |
"settings": [ | |
{ | |
"name": "timezone", | |
"label": "Timezone (IANA format)", | |
"type": "STRING", | |
"default": "America/Chicago" |
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
<script> | |
/* | |
VERSION: 2023-09-23 | |
The API Key, Latitude, and Longitude are now set in the Tile Settings | |
when you edit an individual tile. | |
You can also adjust the setting here instead and it will apply as your | |
base setting across ALL instances of this tile unless explicitly | |
overridden in an individual tile's settings |
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
/** | |
* SharpTools SVG Rendering Technical Proof of Concept for Hubitat | |
* Author: Josh Lyon (support@sharptools.io) | |
* Version: See getVersionMap() | |
*/ | |
/* | |
Additional information can be found at: | |
https://community.sharptools.io/t/best-approach-for-irrigation-schedule-tile/3215/14?u=josh | |
*/ |
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
metadata { | |
definition (name: "Simulated Illuminance Sensor", namespace: "sharptools-io", author: "Josh") { | |
capability "Illuminance Measurement" | |
capability "Switch" | |
capability "Switch Level" | |
capability "Sensor" | |
command "setLux" | |
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
defaultEntryPoints = ["http", "https"] | |
[entryPoints] | |
[entryPoints.http] | |
address = ":80" | |
[entryPoints.https] | |
address = ":443" | |
[entryPoints.https.tls] | |
[[entryPoints.https.tls.certificates]] | |
certFile = """-----BEGIN CERTIFICATE----- | |
MY-SSL-CERT-FILE-HERE |
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
/** | |
* Copyright 2015 SmartThings | |
* | |
* Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except | |
* in compliance with the License. You may obtain a copy of the License at: | |
* | |
* http://www.apache.org/licenses/LICENSE-2.0 | |
* | |
* Unless required by applicable law or agreed to in writing, software distributed under the License is distributed | |
* on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License |
NewerOlder