We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
is it possible to make Countdown available in HomeyScript?
The text was updated successfully, but these errors were encountered:
Dat zou erg mooie zijn. Uitlezen kan wel met een stukje script: (nu zetten nog)...
console.log('-------------CountDown timers----------');
let tokens = await Homey.flowToken.getFlowTokens();
for (var i in tokens) { if (tokens[i].uriObj.name.indexOf('CountDown') === 0) { //if (tokens[i].uri == 'homey:app:nl.bevlogenheid.countdown') { console.log(tokens[i].title + ' (' + tokens[i].type + ') : ' + tokens[i].value); //console.log(tokens[i]) } }
if (1 == 2) { let app = await Homey.apps.getApp( {id: 'homey.countdown'} ); await app.apiPost('/update_timer/', {timername: 'schemer', seconds: 120} ); }
return true;
Sorry, something went wrong.
No branches or pull requests
is it possible to make Countdown available in HomeyScript?
The text was updated successfully, but these errors were encountered: