⚠ This scene is running as a background tab — the browser will throttle it. For best performance, open it in a separate window.
CONTROL PANEL SCENE v1.100
STOPPED
SIM SCAN: 
DISCONNECTED
Drag=Orbit  ·  Scroll/+−=Zoom  ·  Arrows=Orbit
BRIDGE WS URL: Run acc-modbus-bridge.js first, then click CONNECT
ACC MODBUS BRIDGE  —  INSTALL GUIDE

What is the ACC Modbus Bridge?

A small Node.js program that runs on your PC and connects this browser scene to a real Modbus TCP or Modbus RTU master such as a PLC, SCADA system, or Modbus Poll software.


Step 1 — Download the installer

Download the zip file and extract it to a folder on your PC.

Download acc-modbus-bridge.zip

Step 2 — Install Node.js (one-time)

The bridge requires Node.js. Download the LTS version from nodejs.org and run the installer.


Step 3 — Run the installer

  1. Extract the zip file
  2. Windows: double-click install.bat
  3. macOS: double-click install.command
  4. Follow the on-screen prompts to choose Ethernet (TCP), Serial (RTU), or both
  5. The installer creates a start-modbus-bridge shortcut for you

Step 4 — Start the bridge

  1. Double-click start-modbus-bridge.bat (Windows) or start-modbus-bridge.command (macOS)
  2. Keep the terminal window open while using Modbus

Step 5 — Connect this scene

  1. Confirm the Bridge WS URL is ws://127.0.0.1:8502
  2. Click CONNECT — the badge turns amber when linked

Modbus Address Map — Control Panel Scene

  1. Coil  00001  →  Y1 Motor Run LED (master writes)
  2. DI   10001  →  X1 Start PB N.O. (master reads)
  3. DI   10002  →  X2 Stop PB N.C. — 1=closed, 0=pressed (master reads)
  4. DI   10003  →  X3 Jog PB N.O. (master reads)

More tutorials at  accautomation.ca  ·  YouTube @ACCautomation

OUTPUTS Y
Y1
Motor RunPanel Pilot Light

I/O Map

Y1 → Motor Run LED
Drag to orbit  ·  Scroll to zoom
INPUTS X
X1
Start PBN.O. Momentary
X2
Stop PBN.C. Momentary
N.C.
X3
Jog PBN.O. Momentary

Sequence Log

Open ACC PLC Simulator to link — or press RUN for standalone mode SCAN #0

CONTROL PANEL SCENE

Start / Stop / Jog Motor Control

A floor-mounted NEMA 4 steel enclosure with three 30mm operator pushbuttons and a pilot light. This is the fundamental building block of every industrial control panel — the Start/Stop/Jog circuit is usually the first program a PLC technician writes on a real machine.

I/O MAP
AddressDirDescription
X1INStart pushbutton — N.O. momentary
X2INStop pushbutton — N.C. momentary
X3INJog pushbutton — N.O. momentary
Y1OUTMotor run pilot light / contactor
FIVE STEPS TO PLC PROGRAM DEVELOPMENT

Use these five steps to develop your ladder program for this scene. Run standalone mode first to observe correct behaviour, then build and test your program in the ACC PLC Simulator.

STEP 1

Define the Task

A motor must be controlled from a panel with three pushbuttons. Pressing Start runs the motor. Pressing Stop turns it off. Pressing and holding Jog runs the motor only while held — releasing stops it immediately. Stop must always override Start and Jog. The motor must not restart after a power failure.

STEP 2

Define the Inputs and Outputs

X1=Start (N.O.), X2=Stop (N.C. — normally ON, goes OFF when pressed), X3=Jog (N.O. — ON only while held), Y1=Motor output. Note: Stop is wired N.C. for safety — a broken wire opens the stop circuit.

STEP 3

Develop the Sequence of Operation

Motor starts when Start is pressed AND Stop is not pressed. Once running, the motor must continue after Start is released — this requires a seal-in contact (Y1 parallel with X1). Stop unlatches the seal-in. Jog runs without latching — a Jog condition must block the seal-in from engaging. Consider: what happens if Start and Jog are pressed at the same time?

STEP 4

Develop the PLC Program

Write your ladder in the ACC PLC Simulator. You will need at least two rungs: one for the Start/Stop seal-in, and one to handle Jog without latching. Think carefully about the interlock between Jog and the seal-in contact.

STEP 5

Test the Program

Connect this scene, press RUN, and verify: (1) Start latches motor ON; (2) Stop turns it off; (3) Jog runs only while held and does not latch; (4) Stop always wins over Start and Jog. Use STEP mode to trace individual scans.