Software zum Installieren eines Smart-Mirror Frameworks , zum Nutzen von hochschulrelevanten Informationen, auf einem Raspberry-Pi.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

1234567891011121314
  1. 'use strict';
  2. var parseMeasurement = require('../parsers').parseMeasurement;
  3. module.exports.definition = {
  4. set: function(v) {
  5. this._setProperty('top', parseMeasurement(v));
  6. },
  7. get: function() {
  8. return this.getPropertyValue('top');
  9. },
  10. enumerable: true,
  11. configurable: true,
  12. };