1. Home
    1. Dashboard
    2. Search
  2. Forum
    1. Unresolved Threads
    2. Members
      1. Recent Activities
      2. Users Online
      3. Team Members
      4. Search Members
      5. Trophys
  3. Articles
  4. Blog
  5. Videos
  6. Jobs
  7. Shop
    1. Orders
  • Login or register
  • Search
This Thread
  • Everywhere
  • This Thread
  • This Forum
  • Articles
  • Pages
  • Forum
  • Blog Articles
  • Products
  • More Options
  1. Robotforum - Support and discussion community for industrial robots and cobots
  2. Forum
  3. Industrial Robot Support and Discussion Center
  4. KUKA Robot Forum
Your browser does not support videos RoboDK Software for simulation and programming
Visit our Mainsponsor
IRBCAM
Robotics Channel
Robotics Training
Advertise in robotics
Sponsored Ads

WorkVisual, how to directly map an array to the inputs

  • Alky_robot
  • April 16, 2025 at 4:15 PM
  • Thread is Unresolved
  • Alky_robot
    Posts
    2
    • April 16, 2025 at 4:15 PM
    • #1

    Good morning, I have a problem: I need to map an indexed list (array) of bool into a series of inputs.

    something like this:

    DECL BOOL es[10]

    SIGNAL es[1] $IN[1]

    SIGNAL es[2] $IN[2]

    SIGNAL es[3] $IN[3]


    Can someone tell me how to do it, thank you!!

  • SkyeFire April 16, 2025 at 4:38 PM

    Approved the thread.
  • hermann
    Reactions Received
    410
    Trophies
    9
    Posts
    2,618
    • April 16, 2025 at 4:43 PM
    • #2

    Not possible.

  • Online
    SkyeFire
    Reactions Received
    1,059
    Trophies
    12
    Posts
    9,453
    • April 16, 2025 at 7:33 PM
    • #3

    Not possible directly.

    You could create a SIGNAL of X bits, then manipulate it on a per-bit basis:

    Code
    SIGNAL oMyOutPut $OUT[1] TO $OUT[32]
    DECL BOOL bMyArray[32]
    FOR _nIndex = 1 TO 32
      $OUT[_nIndex] = bMyArray[_nIndex]
    ENDFOR
  • panic mode
    Reactions Received
    1,294
    Trophies
    11
    Posts
    13,124
    • April 16, 2025 at 9:10 PM
    • #4

    yup...


    there is a function

    GET_SIG_INF (CHAR SIGNAME[24]:IN)

    but i have not found SET_SIG_INF or similar...

    you could write something like

    SIGNAL es $IN[1] to $IN[4]
    SIGNAL fr $IN[5] to $IN[8]
    SIGNAL de $IN[9] to $IN[12]
    SIGNAL jp $IN[33] to $IN[36]
    etc

    and read it like

    $OUT[666]=Get_Signal_Bit(es,2)

    Code
    DEFFCT BOOL Get_Signal_Bit(sig_value:in,bit_pos:in)
      DECL INT sig_name, bit_pos, temp
      SWITCH bit_pos
         CASE 1
            temp = sig_value B_AND 1
         CASE 2
            temp = sig_value B_AND 2
         CASE 3
            temp = sig_value B_AND 4
         CASE 4
            temp = sig_value B_AND 8
          DEFAULT
             MsgQuit("Nope...")
         ENDSWITCH
      RETURN temp>0
    ENDFCT
    Display More

    1) read pinned topic: READ FIRST...

    2) if you have an issue with robot, post question in the correct forum section... do NOT contact me directly

    3) read 1 and 2

  • Alky_robot
    Posts
    2
    • April 17, 2025 at 8:51 AM
    • #5

    thx:thumbs_up:

  • gklpsn
    Trophies
    3
    Posts
    7
    • April 17, 2025 at 11:03 AM
    • #6

    i think u can not do like these, but u can do this


    at config.dat decl itDECL BOOL MY_ARRAY[10]

    MY_ARRAY[1]=FALSE

    MY_ARRAY[2]=FALSE

    MY_ARRAY[3]=FALSE

    MY_ARRAY[4]=FALSE

    MY_ARRAY[5]=FALSE

    MY_ARRAY[6]=FALSE

    MY_ARRAY[7]=FALSE

    MY_ARRAY[8]=FALSE

    MY_ARRAY[9]=FALSE

    MY_ARRAY[10]=FALSE


    create new empty sps.sub


    FOR I=1 TO 10

    MY_ARRAY[I]=$IN[STARTING_OFFSET_BIT_NUMBER+ I -1]

Advertising from our partners

IRBCAM
Robotics Channel
Robotics Training
Advertise in robotics
Advertise in Robotics
Advertise in Robotics

Job Postings

  • Anyware Robotics is hiring!

    yzhou377 February 23, 2025 at 4:54 AM
  • How to see your Job Posting (search or recruit) here in Robot-Forum.com

    Werner Hampel November 18, 2021 at 3:44 PM
Your browser does not support videos RoboDK Software for simulation and programming

Tag Cloud

  • abb
  • Backup
  • calibration
  • Communication
  • CRX
  • DCS
  • dx100
  • dx200
  • error
  • Ethernet
  • Ethernet IP
  • external axis
  • Fanuc
  • help
  • hmi
  • I/O
  • irc5
  • IRVIsion
  • karel
  • kawasaki
  • KRC2
  • KRC4
  • KRC 4
  • KRL
  • KUKA
  • motoman
  • Offset
  • PLC
  • PROFINET
  • Program
  • Programming
  • RAPID
  • robodk
  • roboguide
  • robot
  • robotstudio
  • RSI
  • safety
  • Siemens
  • simulation
  • SPEED
  • staubli
  • tcp
  • TCP/IP
  • teach pendant
  • vision
  • Welding
  • workvisual
  • yaskawa
  • YRC1000

Thread Tag Cloud

  • abb
  • Backup
  • calibration
  • Communication
  • CRX
  • DCS
  • dx100
  • dx200
  • error
  • Ethernet
  • Ethernet IP
  • external axis
  • Fanuc
  • help
  • hmi
  • I/O
  • irc5
  • IRVIsion
  • karel
  • kawasaki
  • KRC2
  • KRC4
  • KRC 4
  • KRL
  • KUKA
  • motoman
  • Offset
  • PLC
  • PROFINET
  • Program
  • Programming
  • RAPID
  • robodk
  • roboguide
  • robot
  • robotstudio
  • RSI
  • safety
  • Siemens
  • simulation
  • SPEED
  • staubli
  • tcp
  • TCP/IP
  • teach pendant
  • vision
  • Welding
  • workvisual
  • yaskawa
  • YRC1000

Tags

  • KUKA
  • input
  1. Privacy Policy
  2. Legal Notice
Powered by WoltLab Suite™
As a registered Member:
* You will see no Google advertising
* You can translate posts into your local language
* You can ask questions or help the community with your knowledge
* You can thank the authors for their help
* You can receive notifications of replies or new topics on request
* We do not sell your data - we promise

JOIN OUR GREAT ROBOTICS COMMUNITY.
Don’t have an account yet? Register yourself now and be a part of our community!
Register Yourself Lost Password
Robotforum - Support and discussion community for industrial robots and cobots in the WSC-Connect App on Google Play
Robotforum - Support and discussion community for industrial robots and cobots in the WSC-Connect App on the App Store
Download