##Description Simple Dashing widget (and associated job) to display RSS feeds. Based on Iaian Mitchell's News widget.
##Dependencies nokogiri
substitutions: | |
name: mitsubishihp | |
friendly_name: Mitsubishi Heatpump | |
esphome: | |
name: ${name} | |
platform: ESP8266 | |
board: esp01_1m | |
external_components: |
Dashing widget to display weather from forecast.io. This widget was forked from https://gist.github.com/mjamieson/5274790 to add Skycons and the forecast for later in the day.
##Usage
##Description A Dashing widget that overlays a scrolling news ticker on the bottom of your Dashboard.
This widget is a little different, in that it doesn't occupy a typical space in the Dashing grid, but instead overlays the bottom of the dashboard. If it doesn't have any data, it will be hidden. If you send it an array of Strings, it will scroll through them either vertically or horizontally. Our office uses it on our dashboards to occasionally flash important notices or reminders in an eye catching fashion, most of the time it is not displayed.
See http://widget-challenge.herokuapp.com/vertical-ticker and http://widget-challenge.herokuapp.com/horizontal-ticker for a live demo.
import logging | |
from bs4 import BeautifulSoup | |
import requests | |
import yaml | |
import json | |
import os.path | |
import datetime | |
import re | |
import sys |
// ==UserScript== | |
// @name Picobrew Control Program Persistence | |
// @namespace https://github.com/toddq | |
// @version 0.2 | |
// @description Allow saving and re-using control programs in Picobrew's 'Advanced Editor' | |
// @author Todd Quessenberry | |
// @match https://picobrew.com/members/recipes/editctlprogram* | |
// @require https://www.gstatic.com/firebasejs/live/3.0/firebase.js | |
// @grant GM_setValue | |
// @grant GM_getValue |