/** * ----------------------------------------------------------------------------- * @package smartVISU * @author Martin Gleiß * @copyright 2012 * @license GPL [http://www.gnu.de] * ----------------------------------------------------------------------------- */ /** * a arrow * * @param unique id for this widget * @param a gad/item for switching * @param a gad/item for the height of the blades * @param the minimum value for 0° (optional, default 0, for future use) * @param the maximum value for 360° (optional, default 255) */ {% macro arrow(id, gad_switch, gad_value, min, max) %} {% endmacro %} /** * a battery * * @param unique id for this widget * @param a gad/item for switching * @param a gad/item for the angle of the pin * @param the minimum value for 0 (optional, default 0, for future use) * @param the maximum value for 255 (optional, default 255) */ {% macro battery(id, gad_switch, gad_value, min, max) %} {% endmacro %} /** * a blade * * @param unique id for this widget * @param a gad/item for switching * @param a gad/item for the angle of the blades * @param the minimum value for 0 (optional, default 0, for future use) * @param the maximum value for 255 (optional, default 255) * * @author Mario Zanier */ {% macro blade(id, gad_switch, gad_value, min, max) %} {% endmacro %} /** * a blade (z profile) * * @param unique id for this widget * @param a gad/item for switching * @param a gad/item for the angle of the blades * @param the minimum value for 0 (optional, default 0, for future use) * @param the maximum value for 255 (optional, default 255) * * @author Mario Zanier */ {% macro blade_z(id, gad_switch, gad_value, min, max) %} {% endmacro %} /** * a blade (round profile) * * @param unique id for this widget * @param a gad/item for switching * @param a gad/item for the angle of the blades * @param the minimum value for 0 (optional, default 0, for future use) * @param the maximum value for 255 (optional, default 255) * * @author Mario Zanier */ {% macro blade_arc(id, gad_switch, gad_value, min, max) %} {% endmacro %} /** * A clock * * @param unique id for this widget * @param a gad/item for switching * @param a gad/item for the angle of the blades */ {% macro clock(id, gad_switch, gad_value, min, max) %} {% endmacro %} /** * A compass * * @param unique id for this widget * @param a gad/item for switching * @param a gad/item for the angle of the pin * @param the minimum value for 0° (optional, default 0, for future use) * @param the maximum value for 360° (optional, default 255) */ {% macro compass(id, gad_switch, gad_value, min, max) %} N {% endmacro %} /** * a graph * * @param unique id for this widget * @param a gad/item for switching * @param a gad/item for the height of the blades * @param the minimum value for 0 (optional, default 0, for future use) * @param the maximum value for 255 (optional, default 255) */ {% macro graph(id, gad_switch, gad_value, min, max) %} {% endmacro %} /** * a meter * * @param unique id for this widget * @param a gad/item for switching * @param a gad/item for the height of the blades * @param the minimum value for 0 (optional, default 0, for future use) * @param the maximum value for 255 (optional, default 255) */ {% macro meter(id, gad_switch, gad_value, min, max) %} {% endmacro %} /** * a shutter * * @param unique id for this widget * @param a gad/item for switching * @param a gad/item for the height of the blades * @param the minimum value for 0 (optional, default 0, for future use) * @param the maximum value for 255 (optional, default 255) */ {% macro shutter(id, gad_switch, gad_value, min, max) %} {% endmacro %} /** * a windrose * * @param unique id for this widget * @param a gad/item for switching * @param a gad/item for the angle of the pin * @param the minimum value for 0° (optional, default 0, for future use) * @param the maximum value for 360° (optional, default 255) */ {% macro windrose(id, gad_switch, gad_value, min, max) %} N {% endmacro %} /** * a windsock * * @param unique id for this widget * @param a gad/item for switching * @param a gad/item for the angle of the pin * @param the minimum value for 0° (optional, default 0, for future use) * @param the maximum value for ~90° (optional, default 255) */ {% macro windsock(id, gad_switch, gad_value, min, max) %} {% endmacro %}