Skip to content

Instantly share code, notes, and snippets.

@rubenkr
Created January 28, 2022 19:34
Show Gist options
  • Save rubenkr/c8def0989bac629ac23178fc1fb14f5e to your computer and use it in GitHub Desktop.
Save rubenkr/c8def0989bac629ac23178fc1fb14f5e to your computer and use it in GitHub Desktop.
varBright = msg.data.attributes.brightness;
varEntity = msg.data.entity_id;
if (varBright < 200) {varBrightness = varBright + 50}
else {varBrightness = 254}
msg.payload = {"entity_id":varEntity}
msg.payload.data = {"brightness":varBrightness}
return msg;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment