Jump to content

Welcome to Smart Home Forum by FIBARO

Dear Guest,

 

as you can notice parts of Smart Home Forum by FIBARO is not available for you. You have to register in order to view all content and post in our community. Don't worry! Registration is a simple free process that requires minimal information for you to sign up. Become a part of of Smart Home Forum by FIBARO by creating an account.

 

As a member you can:

  •     Start new topics and reply to others
  •     Follow topics and users to get email updates
  •     Get your own profile page and make new friends
  •     Send personal messages
  •     ... and learn a lot about our system!

 

Regards,

Smart Home Forum by FIBARO Team


2 Screenshots

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. 0 = activity only, negative = suspended

IDs List

Devices/scenes/variables/keywords (e.g., `"137,630"or"_45"` for scenes)

 
Criteria & Rules

Optional conditions like state="value=true" or property="power"

Action Tables

Optional commands: trueAct{}, falseAct{}, trigAct{}, etc.


🔄 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.
Spoiler

image.thumb.png.16c62fd7a0e9ee01c432bc41a0b16470.png

  • 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 15.1   See changelog

Released

New features requested by users

  1. Added an option to define debugging levels for each jM line in order to minimize debugging info on the console and keep user's important information available for quick review. 

Please see Advanced Users' Guide:<Rules and options> : <Debugging levels> section.

jM={ {“`motion`”,{state=”true”,dbgInfo=true, trueAct={“`light`”,”turnOn”},falseAct={“`light`”,”turnOff”}}}, }

To set specific level for the specific line regardless global definitions, add dbgInfo=false and [required level]=true.

jM={{“`motion`”,{state=”true”,dbgInfo=false, dbgTrueState=true, trueAct={“`light`”,”turnOn”}}},}   

Recommended global debug level setup is for debugged configuration:

dbgInfo =false

dbgTrueState =false

dbgFalseState =false

dbgInitState =false

dbgCmdFalse =false

dbgCmdTrue =true

In case new jM line added and needs to be debugged, inline debug levels definition recommended.

 

      2. During initialization execute tables (trigAct{}, trueAct{}, falseAct{}) if state value has been changed during initialization.

  

 

New features

  1. Major "face lifting" on console view
  2. Added an option to define conditions "and", "or" on the same line. "if {`sens1`=true and `switch`=false or `switch`=true}"
  3. Added an option to define number of required verifications in verify statements.  {`"switch`,"turnOn!{`switch`=true},6"} - verify up to 6 times if the switch is actually turned ON (true). By default, number of verifications is 4.
  4. Added an option to define timers for delays that could be controlled (set / re-set) by other devices in different jM lines. Could be used with multiple motion sensors to update same delay definition. Any name could be define, but keep timer prefix

{"`motion1`",{state="true", trueAct={"`lights`","turnOn"}, falseAct={"`lights`","turnOff", "timerLights,300"}}};

{"`motion2`",{state="true", trueAct={"`lights`","turnOn"}, falseAct={"`lights`","turnOff", "timerLights,300"}}};

in example above the last motion sensor that back to safe will update the timer to 300 seconds delay

 

 

      5. Added new keywords

$lan         hub connection to the LAN (true/false)

$wifi        hub connection to the WiFi (true/false)

$newSw new SW update available (true/false)

$newBeta new beta SW update available (true/false)

$initMode Indicates if the system is in an initialization process (true/false)

$oldValue Old (previous) value of the device. Very useful to monitor proper action progress of the heating devices by mesauring temperature and to compare between old to new value.

 

 

 

Bugs Fix

  1. Minor bugs fix

  2. During initialization action states condition are not verified.

  3. Cosmetic changes and improvements.

 

Update Procedure

New users:

Download All-in-One-v15.1.fqa and add to the system as QA device

 

 Exist users:

Download AOQ-main-v15.1.txt and copy to main file in your QA.

  • Like 7
  • Thanks 1


User Feedback

You may only provide a review once you have downloaded the file.


AR27690

   3 of 3 members found this review helpful 3 / 3 members

One of the must application before migrating devices from HC2. The master/slave option is an excellent tool even to control secondary HC3. Provides remote control for any HC3/HC2/HCL at any place on the globe. By using this QA have decided to keep HC2 as is (except few devices) and to expand my smart home with more devices connected to HC3.

Simple slave emulation devices could be used in HC3 Lua/Block scenes regardless AOQ usage.

Thank cag014 for this wonderful QuickApp, makes HC3 better controller. 

  • Like 1
×
×
  • Create New...