About This File
Ā
š§ What AOQ (All-in-One QuickApp) Offers
- Multi-System Control: Seamlessly manages HC3, HC2, and HCL controllers using master/slave architecture.
- Unified Automation: Replaces scattered Lua and Block scenes with one centralized QA.
- Device Intelligence: Auto-detects Z-Wave, ZigBee, Nice, QA devices, and scenes.
- Alarm Zone Management: Identifies breached zones/sensors and triggers actions.
- Custom Events & Profiles: Supports dynamic profiles and custom rule-based automation.
š ļø Core Configuration: Job Management -Ā jM{} Hash Table
Each line in jM{} includes:
| Field |
Description |
|
|---|---|---|
| Time Span |
Duration in minutes for monitoring or action. |
|
| IDs List |
Devices/scenes/variables/keywords (e.g., `"137,630" |
Ā |
| Criteria & Rules |
Optional conditions like |
|
| Action Tables |
Optional commands: |
š Device Aliasing with jS2n{}
Avoid hardcoding device IDs:
jS2n = {mSensor=200, boiler=137, dryer=630, light=230, timeScene="_17"}
Use aliases in jM{}:
jM={
{15,"`mSensor`",{state="value=true", trueAct={"`light`", "turnOn"},falseAct={"`light`", "turnOff"}}}
}
š Monitor Option
Detects inactivity or failure to report:
{8, "`timeScene` and _545", {timeSlot="10:00~22:00"}} -- scenes must be active every 8 min between 10am to 22pm
{10, "`boiler`and 145", {property="power"}} -- must report power every 10 min
{30, "`boiler`", {state="power>100"}} -- alert if power >100 for 30 min
āļø Control Option
Example: Turn on light when motion sensor is breached, turn off after 3 min when motion sensor back to safe:
jM={"`mSensor`",{state="value=true",trueAct={"`lightSw`","turnOn"},falseAct={"`lightSw`","turnOff", "180"}}}
To restrict to nighttime:
Ā
jM={"`mSensor`",{state="value=true",timeslot="18:00~07:00", trueAct={"`lightSw`","turnOn"},falseAct={"`lightSw`","turnOff", "180"}}}
Ā
Example: Turn on light when motion sensor is breached, turn off after 3 min (regardless of when motion sensor back to safe)Ā
jM={"`mSensor`",{state="value=true", trueAct={{"`lightSw`","turnOn"},{"`lightSw`","turnOff", "180"}}}}
š§Ŗ Debug & Table View
- Debugger Output: Shows executed commands with color-coded status.
- Table Header: Displays system info, sunrise/sunset, home/vacation mode, system traffic.Ā
-
Columns:
- Device type, ID, name, battery status
- Criteria evaluation
- Alerts and elapsed time
- Action tables and active rules
š Top Active Monitor (New)
AOQ now includes an enhanced Top Active Devices monitor designed to identify devices that may destabilize HC3 performance.
It analyzes lifetime activity, current load per hour, and burst behavior to detect devices generating excessive or abnormal traffic.
The table highlights devices that may cause delays, radio congestion, disconnects, or even controller restarts.
A Peak/h column appears only when abnormal bursts are detected, helping users quickly locate problematic devices without cluttering the interface.
š Want to Go Deeper?
You can find the full documentation and guides on the Smart Home Forum by FIBARO, including:
- AOQ Advanced Userās Guide
- AOQ Quick Guide
- AOQ HC-WebEye Viewer
Edited by cag014
Updated
What's New in Version 11.8 Ā Ā See changelog
Released
New features
Ā
- Notify only on one dead child (first reported by the system) of the same physical device.
- Added an option to display text messages in debugging console for debug/trace/warning/error levels (same as fibaro.debug/errorā¦.)
trueAct={ātagā,ādebugā,ādebug messageā}
trueAct={ātagā,ātraceā,ātrace messageā}
trueAct={ātagā,āerrorā,āerror messageā}
trueAct={ātagā,āwarningā,āwarning messageā}
Ā
all above commands could be executed with no ātagā also, but itās recommended to use tag to filter messages.
See Debugging levels in Advanced User Guide for more info.
Ā
- Added an option to compare multiple values in state definition using "==" operator. Not available for any other operators (< / > / = / <>)
Ā
{0,"`KeyFob`",{state="sceneActivation==1 or 2 or 3", trueAct= {ā`Light`","turnOn"}}},
{0,"`temp`",{state="power==40 or 50", trueAct= {ā`heater`","turnOff"}}},
Ā
If the string is too long the full data won't be displayed in the table ( only first 30 characters).
In HcWebEye and by hovering the mouse on the line, full condition will be displayed.
Ā
Ā
- To disable dead reports on specific device set as follow
Ā
HC2/HCL set mark if dead to no in device configuration
HC3/HC3 Lite/Yubii Home unmark āMark if unavailableā field in deviceās Advanced configuration
Ā
Ā
Note: The ātransfer failedā notification will continue to be reported as NACK in Dead Traffic data table.
Ā
- Added an option to use user-defined property in state when the property is not defined in device by adding "+" sign to property name.
Ā
{0,āDevIdā,āstate=ā+newProperty=trueāā¦.
Ā
Bugs Fix
- Time range in condition statement. ($24clock:value=08:00~10:00)
- Minor bugs fix.
Ā
Update procedure
New users please download All-in-One-v11.8.fqa
To update exists AOQ please download AOQ-main-v11.8.txt and copy to main file in your QA.
New user guides:
Ā Advanced User Guide
