Difference between revisions of "Variables"
Tags: Mobile web edit Mobile edit |
Tags: Mobile web edit Mobile edit |
||
| Line 60: | Line 60: | ||
Stores a series of key value pairs. For example if you wanted to store a count for each day of the week you could create a dictionary called dayOfWeekCount and have a series of entries such as dayOfWeekCount [monday] = 1, dayOfWeekCount [tuesday] = 3 etc. | Stores a series of key value pairs. For example if you wanted to store a count for each day of the week you could create a dictionary called dayOfWeekCount and have a series of entries such as dayOfWeekCount [monday] = 1, dayOfWeekCount [tuesday] = 3 etc. | ||
| + | ==<p><b>More information 2</b></p>== | ||
| + | ===Bracket style=== | ||
| + | The syntax {} or [] can be selected from the Settings screen > Magic Text Default Bracket Style. That is, either {VariableName} or [VariableName] | ||
| − | + | ===Output in json format=== | |
| + | To output array/dictionary to a string variable in json format.<br>Local: {lvjson=LocalVariableName}<br> or [lvjson=LocalVariableName]<br>Global: {vjson=GlobalVariableName}<br> or [vjson=GlobalVariableName] | ||
==<p><b>More information</b></p>== | ==<p><b>More information</b></p>== | ||
Revision as of 05:43, 4 February 2026
About variables
Variables can be used to store values (numbers, text strings and true/false conditions). These values can be set in the Set Variable Action. Variables can be used throughout the app as Triggers and Conditions, and can be used for controlling specific Macrodroid and system settings.
An introduction video is available here
https://www.youtube.com/watch?v=0V_EcyhxrpA&t=1s
Global / Local Variables
Local
Simplified:
Belongs to the macro it has been created into. It can only be used inside this macro. Its name must be unique inside the macro it belongs to.
Advanced:
Local variables are specific to a single macro. Use them only when the value is required within that macro. Local variables can be accessed through the edit macro screen.
To reference a local variable, use the format: {lv=LocalVariableName}. This can be used in actions such as Set Variable or Popup Message. It can be automatically inserted by tapping the blue "..." button within the action's configure screen, and selecting the appropriate variable from the popup list.
Global
Simplified:
Can be accessed and used from any macro. Its name must be unique among all the 'global' variables.
Advanced:
Global variables are accessible throughout the application from any Macro. They should be used when storing a value between multiple macros. The list of global variables can be accessed via the Variables tile on the home screen, where you can add, delete, and modify their values.
To reference a global variable, use the format: {v=GlobalVariableName}. This can be used in actions such as Set Variable or Popup Message. It can be automatically inserted by tapping the blue "..." button within the action's configure screen, and selecting the appropriate variable from the popup list.
Standard Variable Types
Boolean
Allows 2 states: True or False.
Integer
To store positive or negative numbers without decimal part, in order to make any kind of mathematical calculations or comparison.
Decimal
To store any positive or negative numeric value, with or without decimal digits, in order to make any kind of mathematical calculations or comparison. Sientific notation as 1.3E-2 may be used.
String
Contains any kind of character (alphanumeric ones or any special ones, such as line feed/carriage return/new line or emojis). HINT: an individual string variable can hold up to 500,000 characters, however it is advisable to avoid very long strings where possible. If you should use strings of great length it is recommended to clear them when finished with.
Data Structure Variable Types
Array
Stores a series of values with associated index variables. For example if you wanted to store a count for each day of the month you could create an array called dayOfMonthCount and have a series of entries such as dayOfWeekCount[1] = 5, dayOfWeekCount[2] = 2 etc.
Dictionary
Stores a series of key value pairs. For example if you wanted to store a count for each day of the week you could create a dictionary called dayOfWeekCount and have a series of entries such as dayOfWeekCount [monday] = 1, dayOfWeekCount [tuesday] = 3 etc.
More information 2
Bracket style
The syntax {} or [] can be selected from the Settings screen > Magic Text Default Bracket Style. That is, either {VariableName} or [VariableName]
Output in json format
To output array/dictionary to a string variable in json format.
Local: {lvjson=LocalVariableName}
or [lvjson=LocalVariableName]
Global: {vjson=GlobalVariableName}
or [vjson=GlobalVariableName]
More information
Bracket style
The syntax {} or [] can be selected from the Settings screen > Magic Text Default Bracket Style. That is, either {VariableName} or [VariableName]
Output in json format
To output array/dictionary to a string variable in json format.
Local: {lvjson=LocalVariableName}
or [lvjson=LocalVariableName]
Global: {vjson=GlobalVariableName}
or [vjson=GlobalVariableName]