Logixpro 500 Key Name And Key Number -

Even with correct mapping, you may encounter issues. Here is a troubleshooting checklist:

| Symptom | Likely Cause | Solution | |-----------------------------------------|-----------------------------------------------|--------------------------------------------------------------------------| | Pressing a key does nothing in LogixPro | Keyboard interrupt not enabled | Go to Simulation → Keyboard Interrupt and enable it. | | Random keys trigger inputs | Another application has focus | Click inside the LogixPro window to give it focus. | | Key number always shows 0 | No interrupt or wrong register address | Ensure N7:x address matches the one in your EQU instruction. | | Arrow keys move cursor instead | LogixPro’s “Use arrows for navigation” active | Disable navigation mode: Simulation → Keyboard Options → Uncheck. | | Enter key resets simulation | Conflict with default menu shortcut | Remap I:1/0 to a different key (e.g., the F12 key, number 88). | logixpro 500 key name and key number

      +EQU+            +EQU+            +OTE+
Rung 1 |N7:5| 50   +---|N7:5|  0   +---|O:2/0|
      |   |         |   |           |   |
      +---+         +---+           +---+

Better way – use a one‑shot to avoid multiple scans: Even with correct mapping, you may encounter issues

      +EQU+      +ONS+            +OTE+
Rung 2 |N7:5| 50--|B3/10|---------|O:2/0|
      |   |      |     |         |     |
      +---+      +-----+         +-----+

The One‑Shot (ONS) ensures the output toggles only once per key press. Better way – use a one‑shot to avoid

LogixPro does not natively allow you to change the key number assigned to I:1/0. However, you can simulate remapping by using the keyboard interrupt method:

Example: You want the G key (34) to act as I:1/0.