Skip to content

Instantly share code, notes, and snippets.

blueprint:
name: ZHA & HUE events
description: >-
Detects ZHA (single buttons) and HUE (up to four buttons) click events and sequences (single click, double click and long click).
domain: automation
input:
clicks_sequence:
name: Click sequence
description: >
List of click types for sequence detection (separated with ','). e.g:
@tiberiucorbu
tiberiucorbu / README.md
Last active July 12, 2025 10:04
Retrive active devices on the network form the vodafone router : CGA4233DE

Retrive active devices on the network form the vodafone kabelbox (CGA4233DE)

In order to automate the network activity like getting the list of connected devices, notify the presensce of a device, log and debug wifi issues, it would be nice to have the list provided by the router of the current status.

In this aricle I am going to explore this posibility, reverse engenier the web app from the router and try to authentificate and retrive the active data table from the router.

The first step is to analyze the web console into the network tab and login to see which requests are beeing made.

Security Chanlenges

@brianmfear
brianmfear / DragDrop.app
Created February 20, 2017 16:39
Drag and Drop in Lightning (simple demo)
<aura:application >
<aura:attribute name="values"
type="String[]"
access="private" />
<aura:attribute name="dragid"
type="Integer"
access="private" />
<aura:handler name="init"
value="{!this}"
action="{!c.doInit}" />