⚠ This scene is running as a background tab — the browser will throttle it. For best performance, open it in a separate window.
MOTOR STARTER SCENE v1.000
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 — Motor Starter Scene

  1. Coil  00001  →  Y1 Motor contactor (master writes)
  2. Coil  00002  →  Y2 Run light, green (master writes)
  3. Coil  00003  →  Y3 Warning buzzer (master writes)
  4. DI   10001  →  X1 Start PB N.O. (master reads)
  5. DI   10002  →  X2 Stop PB N.C. — 1=closed, 0=pressed (master reads)
  6. DI   10003  →  X3 Overload N.C. — 1=healthy, 0=tripped (master reads)

More tutorials at  accautomation.ca  ·  YouTube @ACCautomation

OUTPUTS Y
Y1
Motor ContactorAcross-the-line starter
Y2
Run LightGreen pilot light
Y3
Warning Buzzer2 s pre-start horn

I/O Map

Y1 → Motor Contactor
Y2 → Run Light (Green)
Y3 → Warning Buzzer
Drag to orbit  ·  Scroll to zoom
INPUTS X
X1
Start PBN.O. Momentary
X2
Stop PBN.C. Momentary
N.C.
X3
Motor OverloadN.C. Aux Contact — Maintained
N.C.

Sequence Log

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

MOTOR STARTER SCENE

Start / Stop with Overload and 2-Second Pre-Start Warning

A floor-mounted NEMA 4 control station driving an across-the-line motor starter. Two 30 mm operator pushbuttons, a maintained overload selector, a green run light and a roof-mounted warning horn. Both field contacts on this machine are wired normally closed, and the motor does not start the instant you press Start — a horn sounds first to clear the area. That warning period is where most real machines differ from a textbook seal-in circuit.

Standalone mode already behaves correctly. Run it first, watch the sequence, then reproduce it yourself in the ACC PLC Simulator.

I/O MAP
AddressModbusDirDescription
X1DI 10001INStart pushbutton — N.O. momentary. OFF at rest, ON while held.
X2DI 10002INStop pushbutton — wired N.C. ON while NOT pressed, OFF when pressed.
X3DI 10003INMotor overload auxiliary contact — wired N.C. ON while the motor is healthy, OFF when tripped. Maintained: it stays tripped until reset.
Y1Coil 00001OUTMotor contactor — pulls in to run the motor
Y2Coil 00002OUTGreen run light
Y3Coil 00003OUTWarning buzzer — sounds for 2 seconds before the motor starts

No analog I/O on this scene. There are no timers or counters in the I/O map — the 2-second delay is yours to build in the program.

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 is started and stopped from a control station. Pressing Start begins a start sequence: a warning horn sounds for two seconds to clear the area, then the motor contactor pulls in and a green run light comes on. Pressing Stop drops everything immediately, at any point in the sequence. If the motor overload trips, everything drops as well and cannot be restarted until the overload is reset. The motor must never restart on its own — not after a stop, not after an overload reset, and not when control power comes back.

STEP 2

Define the Inputs and Outputs

X1 = Start pushbutton, wired N.O. — OFF at rest, ON while pressed. X2 = Stop pushbutton, wired N.C. — ON at rest, OFF when pressed. X3 = motor overload auxiliary contact, wired N.C. — ON while the motor is healthy, OFF when tripped. Y1 = motor contactor. Y2 = green run light. Y3 = warning horn.

Both field contacts are wired normally closed on purpose. A cut wire or a loose terminal on either one reads the same as a pressed Stop or a tripped overload, so the failure stops the motor instead of stranding it running. Read the state, not the label: X2 and X3 are ON when the machine is in its normal condition, so in the program they are examined with normally-open contacts.

STEP 3

Develop the Sequence of Operation

Pressing Start with X2 and X3 both ON sets a start request that must seal itself in, because X1 is released long before the motor runs. The start request drives an on-delay timer with a 2-second preset. While the request is on and the timer has not yet timed out, the horn Y3 is on and the contactor Y1 is off. When the timer times out, the horn drops and Y1 pulls in; Y2 follows Y1. Losing X2 or X3 clears the start request, which also resets the timer — so a Stop pressed one second into the warning aborts the start cleanly rather than queueing it.

Work out what happens when Start is pressed and held. Then work out what happens if Start is pressed again while the motor is already running.

STEP 4

Develop the PLC Program

Build it in the ACC PLC Simulator. A workable structure is five rungs: (1) a seal-in rung — X1 in parallel with the seal contact, in series with X2 and X3, driving an internal bit for the start request; (2) the start request driving an on-delay timer with a 2-second preset; (3) the start request AND the timer not done driving Y3; (4) the timer done driving Y1; (5) Y1 driving Y2. The one point to get right is that the timer is enabled by the sealed-in start request, not by X1 directly — a momentary press is far shorter than the delay.

Comment every rung. The seal-in rung in particular should say what it is sealing and what breaks it.

STEP 5

Test the Program

Connect this scene, press RUN, and verify: (1) Start sounds the horn for two seconds, then the contactor pulls in and the run light comes on; (2) Stop pressed during the warning aborts the start with no motor run; (3) Stop pressed while running drops Y1 and Y2 immediately; (4) tripping the overload drops everything and blocks a restart until reset; (5) resetting the overload does not restart the motor on its own; (6) holding Start does not skip or shorten the warning.

Then verify the addresses from outside the browser. Point a Modbus master at the bridge and confirm DI 10001–10003 track the pushbuttons and the overload, and that coils 00001–00003 follow the contactor, run light and horn. Use STEP mode to trace the timer rung scan by scan.