Search the Community

Showing results for tags 'sending string data'.

  • Search By Tags

    Type tags separated by commas.
  • Search By Author

Found 137 results

  1. Hey everyone first post on here, does anyone know if it is possible to convert a string into a double integer. i am working with a dimensioner and it is sending me its box dimensions in a 12 char string (see attached picture). however i need this data as a double integer (it seems to just take the string length not the string value i have tried both dim_lengh and dim_length.data[0]). i have gotten it down to the point where i have the string split up into the dimensions i need but i dont know how to do the conversion. (box dims for reference are 21 X 15 X 14.8) Thanks in advance, Dr. Brule  
  2. I am playing with sending ASCII string commands back and forth between my CP1H and another device. I learned first how to do it using ladder and now that I'm getting into more advanced stuff (parsing, searching for certain chars, converting to INT, ect) I want to do it in Structured Text because the ladder for this gets hard to follow. My very first experiment (count string length) throws an error at me: It apparent takes exception that I've use the "STRING" data type   But it this works just fine in ladder:   So am I really not allowed to use STRING data type in ST on CP1H or am I doing something wrong?
  3. CAM Control Data

    Hi everyone, I'm trying to use the cam control data by using an MR-J4-A-RJ and MR Configurator 2. When I switch the input "CAMC" to ON, I see that the output "CAMS" is switched to ON which means that the cam mode is activated. When I switch CI0 to ON to choose the Cam Data No.1 and switch ST1 to ON...nothing is happening like if there is no Cam Data. Please, have you any issue or idea ?? Thank you in advance Omar
  4. Hi, I am working on a project in Digi Module ConnectME9210 and sending data to Allen Bradley PLC (CompactLogix 5370 family). I am not sure which endian I should use to send data. Does Allen Bradley receive Data in Big Endian or Little Endian? I have another question as well. Can I make an EDS file to tell the PLC to receive data in UINT16, not as a single byte? Muhammad Azeem
  5. Hello all  i'm looking for some software to record a 100 plus channels maybe with an ascii string from a PLC? i want to be able to assign each channel with a unit and a range, flagging feature would be nice.  - selecting the channels i want to view  - auto start recording - save file and start new automatically  -view and create reports  preferably no additional hardware because of the amount of channels. this is to record an operators every move so in events of damage or plant failure we can quickly identify the problem (point the finger)  many thanks dan
  6. Hello all, i'm looking at installing a completely new network for our PLC system, using a ring topology. at the same time i would like to incorporate the IP cameras and VOIP into the same network.  each system is on a different sub net, PLC = x.x.1.x, Cameras= x.x.2.x, VOIP= x.x.3.x estimated camera traffic will be 25 Mbps, PLC 10 Mbps, VOIP no more than 1 Mbps  switches would be capable of 100 Mbps  question: managed or un-managed switches? if it is possible to use un-managed without affecting operations then this would be a massive cost saving    please only comment if you have practical experience implementing this  many thanks Dan  
  7. Hello All, I am using Wonderware InTouch 10.0 on Windows 7. It's slightly outdated, but its what we have. I am currently writing a script using the StartApp command to open a particular PDF file with the touch of a button. My script looks like StartApp("C:\Program Files (x86)\Adobe\Acrobat Reader DC\Reader\AcroRd32 C:\1.pdf"); The first part of the command runs adobe and the second part of the command opens the particular file "1". What I need to figure out is, how do I insert a variable into a string. For example I have 55 files I may potentially need to open up, all named 1-55. So I need the file I am calling to be a variable inside of the string so I can call it inside of a loop. I do not want to copy and paste this code 55 times, I want to make the file name a variable (tagname that is a memory real between 1 and 55) so I can run it in a loop. I have only been using Wonderware for a month or so now, so If anything is confusing feel free to ask. Thanks!
  8. Hello, I'm looking for a simple data logging software, something that doesn't require any programming skills. Thank you!
  9. I have Omron CP1H PLC and using Ethernet Option board to communicate through Ethernet. When I connect PLC to 2 Computer it starts malfunctioning and values in register get fluctuate. while I connect single HMI it works fine. Kindly give solution if anyone know. 
  10. Omron Learning Curve - DATA TYPES

    Hello Everyone, Recently getting into Omron and I am wishing to pursue this type of PLC and software for a staple in my career. I have recently just graduated from a program involving PLC mainly Allen Bradley and one thing I have to say is that while making the transition from AB to Omron, the main difficulty I have had was with data types, specifically BCD, UINT, and CHANNEL. I am currently using the CX Programmer software for a few PID loops and they are causing me some great difficulty because normally I would just simply enter in all my values into a huge PID block in AB but that is not the case when it comes to CX-Programmer. Can anyone point me in the right direction of some manuals or e-learning places so I can quickly get a grasp on this so I can move ahead with the code. It is frustrating when you know how to do something and you just can't figure out how to put it into a software you aren't familiar with. Thanks for your help
  11. Hello All,   I really need help with a full version software of DM value editor for Keyence PLC. All the ones I have found dont seem to work or might be virus.... All help will be really appriciated! Thanks
  12. CX Designer using tables - Help

    Hi all, I have been getting to grips with the different graphic displays in CX One Designer but I am having trouble trying to produce a table which shows column one as a label and column 2 as data value that I am polling from a Modbus slave. From what I have read/tried the data block table seems to require a csv as the data source and I cant seem to achieve what I want with the standard table. If anyone can advise how I might be able to achieve this I would be extremely grateful. Below is the sort of thing I'm hoping to achieve but in a table format:   Bearing 1 Temperature 80°C Bearing 1 Vibration 0.2 mm/s²         Bearing 2 Temperature 82°C Bearing 2 Vibration 0.2 mm/s²  
  13. UDTs to Custom Data Structure

    I have a reference HMI project that has many variables that have an Invalid data type. We are one by one trying to re-create the data types that are missing, but so far there is no easy way that I know of. Currently I re-create the UDT from scratch in a scrap offline project. (based on just looking at the variable elements in the ref project. Export the UDT to .XML file Import the UDT as a new custom structure into the toolbox At this point I can drag the structure from the toolbox into my variable list, and it creates a variable with what looks like a good structure. What I cant figure out is how to easily re-assign the old variable the new custom data type. Since the old variable is used all over the place, it cant be deleted, and if I rename it it changes every reference to it that exists, so that doesnt help either. The image posted shows the old variable "H_Header" and its properties as invalid type (also shows red X in the icon). below that is a new variable with the new data type. (no Red X). If I could delete H_Header I could then just rename the new variable to the same, but I cant because of its use. If I could change the data type from Invalid to H_Header, that would work, but its greyed out and wont let me change it. Any help appreciated    
  14. Good day  I require some assistance with the configuration setup (GX Works 3) for FX5u PLC inter-communication (PLC to PLC), over Ethernet (using the built-in Ethernet port). The purpose of the inter-connection is data exchange. (Values stored within the PLC storage registers such as words and bits).  Does anyone perhaps support files on this such as a procedure or example? Thanks
  15. View File Excel Add-in for GE-IP PLC Data Logging ASComm Excel Add-in is a simple to use, non-programmatic way to populate Excel 2007 - 2016 spreadsheets with data from PLCs, instrumentation, and other process hardware. ASComm Excel Add-in uses built-in drivers for GE-IP PACSystems (RXi, RX3i, RX7i), Series 90 (90-30), and VersaMax communications. No OPC, DDE, external drivers, or programming required. Submitter Automated Solutions Submitted 03/01/16 Category Demo Software
  16. BBG Management Corporation has three long-term contracts opportunities for Factory Automation Specialists in Columbus, GA.Requirements:At least 3 years of work experience as a technologist in a range of shop floor manufacturing applications (with a focus on manufacturing machine tools/robotics)At least 3 years of experience with machine tool PLC and SCADA software programmingAt least 3 years of experience with data collection and reportingStrong interpersonal and communication skillsFamiliarity with a dynamic shop floor environmentStrong mechanical skills/know-howFamiliarity of the Ignition software package is a huge assetIf you feel that you would be a good fit for this position, please contact our recruiter Andrea at andrea.nemer@bbgmanagement.com. Or, apply directly on our website at: https://bbgmanagement.com/careers?t=5&b=X2PUKIEMCALPSJOCDCH2O7FB2G7A7UZPVPEIYFMHDCFA2IF2I4FILAS6USM6ICE4BNXRBUMXELDSS5WX2VXVC%3D%3D%3DOur jobs are also available on LinkedIn and Indeed.BBG Management welcomes and encourages applications from people with disabilities. Accommodations for disabilities in relation to the job selection process are available upon request.
  17. Hi, I am trying to enter a new line in a string. For example " Line 1                           Line 2"   Can this be done in rslogix 500 ?   Thanks
  18. CP1E RS232 Setup

    Hi everyone, I am fairly new here, I have a CP1E-N40DR-A And i need to send a string of data to a printer over rs232 from the built in port on the PLC, I have had a look online and canot find any information on what I need to do. all the tutorials are for CJ2 cpus ect and the instructions that I would normally use on a CJ2 dont work on CP1E PLC's. Any help or light shed would be great,  Thanks in advance
  19. I would like to use the actual Cycle Time (in seconds) of the NJ101 CPU in a Structured Text  math equation.  You might also call it the Task Period... However it's called, It needs to be the amount of time that has elapsed from the last calculation of the ST math equation.  It must be a variable that also satisfies this looping equation: Time:= Time +cycle time .. so that the master equation, which is calculating position information, based on TIME .. is up to date with each calculation in the loop. How do I insert that cycle-time, which might not be identical for each loop, (or, is it) ?  Thanks, Regards, Michael  
  20. Iwo

    Hi ALL, I have a GE PQMII,Redlion Data Station & GE LM90 30 PLC I am trying to map data out of the PQMII to Redlion using Modbus-RS485 and then using Ethernet (TCP/IP) to map data from Redlion to GE LM 9030 PLC. I know Modbus uses hexadecimal and PLC Registers are in Decimal I need a technical procedure on how to configure/program Thank you Chris Ok Tedi Mining Limited
  21.  Hellow Mitsubishi Experts    . I want to update my system . My machine have Mitsubishi plc system . Details of plc - CPU FX1n-60MR-001 Expansion Module FX2n-8EYR  . We have two factories .In one factory have this Mitsubishi plc system (LOCAL Location ) .So from other factory (Remote Location ) I want to check some plc data via internet using some interface (Ex visual studio interface )  .It is mean I want to remotely check some data (machine production units ,machine speed and etc )  . I have plc program and plc software .   So what i want to add external modules to this system .?   How can i implement my design ?.   . I m appreciate ur immediate reply .       Thank you.   Tharindu  
  22. ASCII Code 8 Byte In Twido

    Hey Guys!!!! I'm trying to use ASCII 8 bites in TWIDO PLC and on MOD BUS TCPIP it connected to WinCC , where I'm trying to read the ASCII in as a STRING char that to in 8bits. The problem I'm facing is that it is getting swapped like if I'm writing VA in PLC then on SCADA it is showing AV. In WinCC there is no setting for word swapping. Therefore Kindly help me for this in plc end
  23. Hey Guys!!!! I'm trying to use ASCII 8 bites in TWIDO PLC and on MOD BUS TCPIP it connected to WinCC , where I'm trying to read the ASCII in as a STRING char that to in 8bits. The problem I'm facing is that it is getting swapped like if I'm writing VA in PLC then on SCADA it is showing AV. In WinCC there is no setting for word swapping. Therefore Kindly help me for this in plc end
  24. Hi, I have variable (named var1) with data type 'Word[Unsigned]/Bit String [16-bit]' with Array [0..7]. I want to put 16 variables with data type 'bit' in var1. Is there function for that? Also is it possible to put 16 variables (bit) like this: var1[0].0:=bit1; var1[0].1:=bit2 etc. I'm using GX Works 2 with CPU L02 Best Regards
  25. Hi, I have variable (named var1) with data type 'Word[Unsigned]/Bit String [16-bit]' with Array [0..7]. I want to put 16 variables with data type 'bit' in var1. Is there function for that? Also is it possible to put 16 variables (bit) like this: var1[0].0:=bit1; var1[0].1:=bit2 etc. I'm using GX Works 2 with CPU L02 Best Regards