Helgatchi
Connect over USB to update firmware or open a console.
This browser can't talk to USB devices. Use desktop Chrome, Edge, or Opera.
Device
Not connected.
Firmware
Installed—
Latest—
Hardware—
Full wipe & fresh install — erases all settings and rules, then flashes everything.
Factory shipping mode — wipes all settings, rules, and alerts, then puts the device into deep sleep for shipping. Wake it with a long-press of CENTER.
Rules
regex help
Regex patterns (the "matches (regex)" mode)
Case-insensitive; must match the whole value.
Examples
Tip: "contains / starts with / ends with" already cover plain text — reach for regex only when the value has a pattern like these.
Case-insensitive; must match the whole value.
. any character* + ? repeat previous (0+, 1+, 0-1)\d digit \w letter/digit/_ \s space[a-z] any in set [^0-9] any not in set\. a literal dot (backslash escapes specials)Examples
BWL\d-\d* → BWL9-089912, BWL5-012241cam-\d+ → cam-1, cam-42[a-f0-9]* → any hex stringTip: "contains / starts with / ends with" already cover plain text — reach for regex only when the value has a pattern like these.