Buttons & Indicators Module

Optional Purchase Necessary: To use MachineApps, you must purchase the necessary licenses. For more information, refer to Automation1 MachineApps.

Add the Buttons & Indicators module to a MachineApp to provide customized functionality to users who operate an Automation1 controller.

The customizable buttons and indicators are organized into pages so that you can group your custom buttons and indicators how you want. Each page can hold a maximum of 20 buttons or indicators, and you can create an unlimited number of pages. Use the page name drop-down or the arrow buttons to navigate through your pages.

The Buttons & Indicators module is a Secondary module, so it can only be added to a Secondary module region (Left, Right, Top, or Bottom). When you add the Buttons & Indicators module to the Left or Right region, buttons and indicators show vertically in one or two columns. When you add the Buttons & Indicators module to the Top or Bottom region, buttons and indicators show horizontally in one or two rows.

When the Use Auto Row Wrapping or Use Auto Column Wrapping toggle for a page is off, the module automatically shows the buttons and indicators in one or two rows or columns based on the size of the application window. Also, when these toggles are off, the location of the row or column break has an effect on how buttons and indicators show.

Buttons

Each button must have a name and a default state. The display text and custom colors show on the button. Buttons can have many additional states. Only one state is active at a time for each button. For each button state, you can change the display text and specify what AeroScript function executes when the button is clicked when that state is active.

You can also define Inhibited States for buttons. When an inhibited state is active, the button is disabled.

AeroScript Buttons

When you add a button with the Edit Module Configuration dialog, you can toggle on Control States with AeroScript to make the Edit Information… button active. When you click this button, you can edit the names and IDs of the buttons. Buttons can have the same ID or name if you want them each to show the same state.

AeroScript buttons are initialized to their default state. To set a button to a different state, use the AppButtonSetState() function with the matching button and state IDs or names. If a button has multiple states with the same ID or name, the first state with that ID or name will be active.

Conditional Buttons

Buttons that do not have their states controlled with AeroScript can have conditions defined on each non-default state. The active state of a conditional button is the first defined state for which its condition is satisfied. If no condition is satisfied, then the default state of the button is the active state.

Indicators

Each indicator must have a name and an off state. The display text and custom colors show on the indicator. You can control the indicator states with AeroScript or with conditions that you can configure.

AeroScript Indicators

Indicators that have their states controlled with AeroScript have an Indicator ID and Indicator Name that you can configure by clicking the Edit Information… button next to the assigned ID. When you do this, a dialog comes into view that shows the currently assigned IDs and names of all AeroScript indicators in the current MachineApp. Indicators can share the same ID or name if you want them each to show the same state.

By default, these indicators are initialized to their off state. To turn on the indicator use the AppIndicatorOn() AeroScript function with the indicator ID or name that you want it to have and specified arguments to configure the display text, colors, and animation. To turn off the indicator use the AppIndicatorOff() function with the indicator ID or name.

Conditional Indicators

Indicators that do not have their states controlled with AeroScript can define many additional on states. Only one state is active at a time for each indicator. The active state of an indicator is the first defined state for which its condition is satisfied. If no condition is satisfied, then the off state of the indicator is the active state.

You can create, edit, and delete pages, buttons, and indicators with the Edit Module Configuration dialog.

Use the MachineApps workspace in Automation1 Studio to:

  • Add the Buttons & Indicators module to a MachineApp.
  • Configure the Buttons & Indicators module.

Use the Automation1 MachineApps application to:

  • Operate an Automation1 controller with customizable buttons and indicators in a MachineApp.

You can create a condition based on one or more bits of a status signal by selecting the bits that you want and then selecting a constant value for the other operand. For example, to create a condition that tests that the X axis is enabled, make the selections that follow:

  1. Left Operand

    • Context: Axis

    • Axis: X

    • Signal: Drive Status

    • Bits: Enabled

    • Use Word: Off

  2. Operator: ==

  3. Right Operand

    • Context: Constant

    • Constant Value: 1

  4. Click OK to close the editor.