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.

minutes.js 499B

1234567891011121314151617181920212223242526272829
  1. 'use strict';
  2. const DatePart = require('./datepart');
  3. class Minutes extends DatePart {
  4. constructor(opts = {}) {
  5. super(opts);
  6. }
  7. up() {
  8. this.date.setMinutes(this.date.getMinutes() + 1);
  9. }
  10. down() {
  11. this.date.setMinutes(this.date.getMinutes() - 1);
  12. }
  13. setTo(val) {
  14. this.date.setMinutes(parseInt(val.substr(-2)));
  15. }
  16. toString() {
  17. let m = this.date.getMinutes();
  18. return this.token.length > 1 ? String(m).padStart(2, '0') : m;
  19. }
  20. }
  21. module.exports = Minutes;