update snapshots to new help text
This commit is contained in:
parent
b04f3959af
commit
c8911d545d
1 changed files with 13 additions and 13 deletions
|
|
@ -61,7 +61,7 @@ exports[`Block Snapshots > Blockly JSON > action_root 1`] = `
|
||||||
"inputsInline": false,
|
"inputsInline": false,
|
||||||
"type": "action_root",
|
"type": "action_root",
|
||||||
"colour": "0",
|
"colour": "0",
|
||||||
"tooltip": "Add Triggers to determine when this Action runs. Add Actions to determine what this Action does.",
|
"tooltip": "The foundation of every Adafruit IO Action. Connect Triggers (like 'when temperature > 80°F' or 'every morning at 8 AM') to define when your Action runs, then attach Action blocks (like 'send email', 'publish to feed', or 'if/then logic') to define what happens when triggered.",
|
||||||
"message0": "Triggers: %1",
|
"message0": "Triggers: %1",
|
||||||
"args0": [
|
"args0": [
|
||||||
{
|
{
|
||||||
|
|
@ -2522,7 +2522,7 @@ exports[`Block Snapshots > Blockly JSON > io_logic_compare 1`] = `
|
||||||
"inputsInline": true,
|
"inputsInline": true,
|
||||||
"type": "io_logic_compare",
|
"type": "io_logic_compare",
|
||||||
"colour": 120,
|
"colour": 120,
|
||||||
"tooltip": "Numerically compare two given values using the selected math operation.",
|
"tooltip": "Build mathematical conditions by comparing any two numerical values in your Action logic. Perfect for creating if/then statements like 'if temperature is greater than target temp', 'if battery level equals low threshold', or 'if sensor reading is between two values'. Works with feed data, variables, calculations, or any numerical inputs.",
|
||||||
"output": "expression",
|
"output": "expression",
|
||||||
"message0": "%1",
|
"message0": "%1",
|
||||||
"args0": [
|
"args0": [
|
||||||
|
|
@ -2581,7 +2581,7 @@ exports[`Block Snapshots > Blockly JSON > io_logic_negate 1`] = `
|
||||||
"inputsInline": false,
|
"inputsInline": false,
|
||||||
"type": "io_logic_negate",
|
"type": "io_logic_negate",
|
||||||
"colour": 60,
|
"colour": 60,
|
||||||
"tooltip": "Swaps a truthy value to \`false\`, or a falsy value to \`true\`.",
|
"tooltip": "Flip any condition to its opposite - turns true into false and false into true. Essential for creating inverse logic like 'if NOT raining', 'if door is NOT open', or 'if temperature is NOT above 75°F'. Perfect for building exception handling, safety conditions, and reverse automation logic in your IoT Actions.",
|
||||||
"output": "expression",
|
"output": "expression",
|
||||||
"message0": "not %1",
|
"message0": "not %1",
|
||||||
"args0": [
|
"args0": [
|
||||||
|
|
@ -2601,7 +2601,7 @@ exports[`Block Snapshots > Blockly JSON > io_logic_operation 1`] = `
|
||||||
"inputsInline": true,
|
"inputsInline": true,
|
||||||
"type": "io_logic_operation",
|
"type": "io_logic_operation",
|
||||||
"colour": 60,
|
"colour": 60,
|
||||||
"tooltip": "Perform the specifed boolean logic operation on two operands.",
|
"tooltip": "Combine multiple conditions to create sophisticated decision logic in your Actions. Perfect for complex automation like 'if temperature is high AND humidity is low', 'if motion detected OR door opened', or any scenario where you need multiple criteria to work together. Essential for building smart, multi-factor IoT control systems.",
|
||||||
"output": "expression",
|
"output": "expression",
|
||||||
"message0": "%1",
|
"message0": "%1",
|
||||||
"args0": [
|
"args0": [
|
||||||
|
|
@ -2876,7 +2876,7 @@ exports[`Block Snapshots > Blockly JSON > io_variables_get 1`] = `
|
||||||
"inputsInline": false,
|
"inputsInline": false,
|
||||||
"type": "io_variables_get",
|
"type": "io_variables_get",
|
||||||
"colour": 240,
|
"colour": 240,
|
||||||
"tooltip": "Get the value previously assigned to a variable.",
|
"tooltip": "Retrieve the value stored in a variable that was previously set using a Set Variable block. Use this to access stored feed values, calculation results, or any data saved earlier in your Action.",
|
||||||
"output": "expression",
|
"output": "expression",
|
||||||
"message0": "Get variable %1 %2",
|
"message0": "Get variable %1 %2",
|
||||||
"args0": [
|
"args0": [
|
||||||
|
|
@ -2898,7 +2898,7 @@ exports[`Block Snapshots > Blockly JSON > io_variables_set 1`] = `
|
||||||
"inputsInline": true,
|
"inputsInline": true,
|
||||||
"type": "io_variables_set",
|
"type": "io_variables_set",
|
||||||
"colour": 240,
|
"colour": 240,
|
||||||
"tooltip": "Set a variable to a value",
|
"tooltip": "Store a value in a named variable for later use in your Action. Variables let you remember feed values, calculation results, or any data to use in subsequent action blocks.",
|
||||||
"nextStatement": "expression",
|
"nextStatement": "expression",
|
||||||
"previousStatement": "expression",
|
"previousStatement": "expression",
|
||||||
"message0": "Set variable %1 = %2",
|
"message0": "Set variable %1 = %2",
|
||||||
|
|
@ -2923,7 +2923,7 @@ exports[`Block Snapshots > Blockly JSON > matcher_compare 1`] = `
|
||||||
"inputsInline": true,
|
"inputsInline": true,
|
||||||
"type": "matcher_compare",
|
"type": "matcher_compare",
|
||||||
"colour": 224,
|
"colour": 224,
|
||||||
"tooltip": "Numerically compare the new Feed value with another number.",
|
"tooltip": "Create smart triggers based on numerical sensor data and thresholds. Perfect for temperature alerts ('notify when above 80°F'), battery monitoring ('warn when below 20%'), humidity control ('turn on fan when over 60%'), or any sensor-based automation that depends on numerical comparisons.",
|
||||||
"output": "matcher",
|
"output": "matcher",
|
||||||
"message0": "%1 %2",
|
"message0": "%1 %2",
|
||||||
"args0": [
|
"args0": [
|
||||||
|
|
@ -2973,7 +2973,7 @@ exports[`Block Snapshots > Blockly JSON > matcher_text_compare 1`] = `
|
||||||
"inputsInline": true,
|
"inputsInline": true,
|
||||||
"type": "matcher_text_compare",
|
"type": "matcher_text_compare",
|
||||||
"colour": 180,
|
"colour": 180,
|
||||||
"tooltip": "Compare the new feed value with text for equality, inequality, or inclusion.",
|
"tooltip": "Compare text-based feed data using smart text matching. Perfect for triggers based on status messages ('door opened', 'motion detected'), device states ('online', 'offline'), or any text-based sensor data. Works with exact matches, exclusions, or partial text detection within longer messages.",
|
||||||
"output": "matcher",
|
"output": "matcher",
|
||||||
"message0": "%1 %2",
|
"message0": "%1 %2",
|
||||||
"args0": [
|
"args0": [
|
||||||
|
|
@ -3130,7 +3130,7 @@ exports[`Block Snapshots > Blockly JSON > on_schedule 1`] = `
|
||||||
"inputsInline": false,
|
"inputsInline": false,
|
||||||
"type": "on_schedule",
|
"type": "on_schedule",
|
||||||
"colour": 30,
|
"colour": 30,
|
||||||
"tooltip": "A schedule to run the action, from every minute to once a year.",
|
"tooltip": "Create powerful time-based automation that runs your Actions on a schedule - from simple daily reminders to complex patterns like 'every 15 minutes during weekdays' or 'first Monday of each quarter'. Works like a smart alarm clock for your IoT devices, automatically triggering actions without any manual intervention. Perfect for turning lights on/off, sending regular reports, or controlling devices based on time patterns.",
|
||||||
"nextStatement": "trigger",
|
"nextStatement": "trigger",
|
||||||
"previousStatement": "trigger",
|
"previousStatement": "trigger",
|
||||||
"message0": "Schedule %1",
|
"message0": "Schedule %1",
|
||||||
|
|
@ -3886,7 +3886,7 @@ exports[`Block Snapshots > Blockly JSON > text_compare 1`] = `
|
||||||
"inputsInline": true,
|
"inputsInline": true,
|
||||||
"type": "text_compare",
|
"type": "text_compare",
|
||||||
"colour": 180,
|
"colour": 180,
|
||||||
"tooltip": "Compare two chunks of text for equality, inequality, or inclusion.",
|
"tooltip": "Compare any two pieces of text or data to build conditional logic in your Actions. Perfect for creating if/then statements like 'if device status equals online', 'if user name is not guest', or 'if error message contains timeout'. Works with feed values, variables, user input, or any text-based data.",
|
||||||
"output": "expression",
|
"output": "expression",
|
||||||
"message0": "%1",
|
"message0": "%1",
|
||||||
"args0": [
|
"args0": [
|
||||||
|
|
@ -4109,7 +4109,7 @@ exports[`Block Snapshots > Blockly JSON > when_data 1`] = `
|
||||||
"inputsInline": true,
|
"inputsInline": true,
|
||||||
"type": "when_data",
|
"type": "when_data",
|
||||||
"colour": 30,
|
"colour": 30,
|
||||||
"tooltip": "Run this action when a Feed receives a new data point.",
|
"tooltip": "The simplest trigger - runs your Action every single time ANY new data arrives at a feed, regardless of what the value is. Perfect for logging all activity ('record every sensor reading'), acknowledging data receipt ('send confirmation for every message'), or triggering workflows that need to process all incoming data. No conditions, no filtering - just pure data arrival detection.",
|
||||||
"nextStatement": "trigger",
|
"nextStatement": "trigger",
|
||||||
"previousStatement": "trigger",
|
"previousStatement": "trigger",
|
||||||
"message0": "When %1 gets any data %2",
|
"message0": "When %1 gets any data %2",
|
||||||
|
|
@ -4142,7 +4142,7 @@ exports[`Block Snapshots > Blockly JSON > when_data_matching 1`] = `
|
||||||
"inputsInline": true,
|
"inputsInline": true,
|
||||||
"type": "when_data_matching",
|
"type": "when_data_matching",
|
||||||
"colour": 30,
|
"colour": 30,
|
||||||
"tooltip": "Run this Action when the specified Feed receives data that matches the specified condition.",
|
"tooltip": "The most common trigger type - runs your Action immediately whenever new data arrives at a feed that meets your specified condition. Perfect for real-time responses like 'send alert when temperature exceeds 85°F', 'turn on lights when motion detected', or 'notify me when battery drops below 20%'. This trigger fires every single time the condition is met.",
|
||||||
"nextStatement": "trigger",
|
"nextStatement": "trigger",
|
||||||
"previousStatement": "trigger",
|
"previousStatement": "trigger",
|
||||||
"message0": "When %1 gets data matching: %2",
|
"message0": "When %1 gets data matching: %2",
|
||||||
|
|
@ -4177,7 +4177,7 @@ exports[`Block Snapshots > Blockly JSON > when_data_matching_state 1`] = `
|
||||||
"inputsInline": true,
|
"inputsInline": true,
|
||||||
"type": "when_data_matching_state",
|
"type": "when_data_matching_state",
|
||||||
"colour": 30,
|
"colour": 30,
|
||||||
"tooltip": "Run this Action when the specified Feed receives a data point that compares to its previous data point in the specified way.",
|
"tooltip": "Advanced trigger that watches for changes in how your feed data matches a condition over time. Unlike basic triggers that just check if data equals a value, this compares the current data point with the previous one to detect when conditions START being true, STOP being true, or CONTINUE being true. Perfect for detecting state changes like 'temperature just went above 80°' or 'door just closed after being open'.",
|
||||||
"nextStatement": "trigger",
|
"nextStatement": "trigger",
|
||||||
"previousStatement": "trigger",
|
"previousStatement": "trigger",
|
||||||
"message0": "When %1 gets data that %2 matching %3",
|
"message0": "When %1 gets data that %2 matching %3",
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue