$argon2id$v=19$m=64,t=512,p=2$tvIxJ39SkjB2s7yO0zxXPw$7b+cBjt2I9wjd6NTS1wW/A
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| blueprint: | |
| name: Easy Customizable Controller (Multi-Press) for Hue Dimmer Switch in Zigbee2MQTT | |
| description: 'Controller automation for easy customizable buttons with Philips Hue | |
| Dimmer Switch (Zigbee2MQTT). | |
| Based on: https://gist.github.com/patpac9/2a378fa410d393501da6e35efb4277f7 | |
| IMPORTANT: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import {Zcl} from "zigbee-herdsman"; | |
| import fz from "zigbee-herdsman-converters/converters/fromZigbee"; | |
| import * as exposes from "zigbee-herdsman-converters/lib/exposes"; | |
| import * as modernExtend from "zigbee-herdsman-converters/lib/modernExtend"; | |
| import * as reporting from "zigbee-herdsman-converters/lib/reporting"; | |
| const {presets, access} = exposes; | |
| // Store press queues per device | |
| const pressQueues = new Map(); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| FROM python:3.6-slim | |
| ARG UID | |
| ARG GID | |
| RUN groupadd -g "${GID}" app \ | |
| && useradd --create-home --no-log-init -u "${UID}" -g "${GID}" app | |
| RUN apt-get update && \ | |
| apt-get -y install python3-pip && \ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| proxy: | |
| node: | |
| - hmr.my-app.lndo.site:8080 | |
| services: | |
| node: | |
| type: node:12.16 | |
| ssl: true | |
| scanner: false | |
| build: |
I hereby claim:
- I am benperiton on github.
- I am benperiton (https://keybase.io/benperiton) on keybase.
- I have a public key ASDfEAMNXoRgRwiBninrKc138_N4bVFcval0Mglo7DPIaQo
To claim this, I am signing this object:
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Consider this mockup in JS: | |
| (function (global) { | |
| function myThing ($opts) { | |
| this.opts = $opts || {}; | |
| } | |
| myThing.prototype.test = function () { | |
| return this.opts; | |
| }; |