Search the Community

Showing results for tags 'error reading data'.

  • Search By Tags

    Type tags separated by commas.
  • Search By Author

Found 250 results

  1. Q-Series - Operation Error 4100

    Hi guys. I found error on PLC and from PLC diagnostic I found this Operation Error 4100 as per attach picture. FYI, there is no SD card mount onto this PLC. I wonder what is ATA card. This error wont affect the operation. Any advise on what to check?   This ladder is pop up when I clicked, error jump.   Thanks.
  2. A2SHcpu ROM Error Code 17

    Working with A2SHcpu and something went wrong. Cleared PLC memory and I have an error code 17 (ROM). I don't know how to clear this. I have tried creating a new project and parameters but when I try downloading parameters only it gets to about 13% then says complete. When I read the parameters back from the PLC they have not changed and are still at factory default. There is no memory card that I can see in the processor. Any help or guidance would be much appreciated.
  3. Emerson (GE) memory map data types

     I've always had this Allen-Bradley memory map taped on my wall in my office. It used to be handy to use, until I remembered al of the prefix letters for each data type. Now I am using Emerson (GE) the old proficy software now called PAC ME machine edition. Now I'm finding it's about impossible to find the data type list amongst the thousands of help files, videos, ect... it seems like a simple thing to find, but I'm not having any luck. They use I and Q for regular inputs & Outputs, but there are R files, M files, S files, N files, G files, ect.... this is old-school PLC software that doesn't use tag names.   Is there a steadfast rule for each type, or can they be used for any type of data? Dazed and confused...  
  4. Hi all, I have an issue with Mitsubishi GOT Simple Series. After write to GOT, everything okay. All the hmi button functioning well. But after turn off and on the hmi, It will appear "SCREEN ERROR".  Any idea what can I check? 
  5. Hi Everyone,I have a customer that needs a CQM1H (CPU51) replaced. They purchased the processor new-old-stock from a source they found online. It arrived in the original packaging and had the safety label around the top of the unit, so it seems that it is as advertised and no need to suspect that it would have problems. I purchased secondhand, a power supply to attach to it and program it from the bench instead of in the machine. The customer also provided me with an SD card containing the project file(s) for the machine. I am able to load the project in CX-ONE (running on Win 7) just fine. My computer has a native serial port (COM1) and I built a programming cable to work with the DB9 peripheral port according to a diagram I found online.The processor powers up right away with the ERR/ALM continuously on. No other LEDs came on initially, and after a bit of playing around with communications settings, I finally landed the right protocol and my computer seemed to identify the processor correctly. I compiled the source and attempted a transfer to the PLC. I got some failed message (or maybe messages) at the end of the transfer. It did seem to send all of the binary code, it just ended with an error message that I unfortunately didn't write down or grab a screenshot.Anyway, what I have now is a PLC processor with the ERR/ALM LED on always, I've never seen it in RUN mode, and now after the programming attempt, I'm seeing the COMM LED strobing at about a .5sec frequency (with or without a cable attached to the peripheral port), AND I cannot get CX-Programmer to again acknowledge the processor anymore. I'd like to reset this back to the way it arrived to me, but can't figure out how to make that happen offline. The DIP switches don't seem to cause that effect. I should say also that the DIP switch settings are all OFF except 3 and 7.Any help is much appreciated!Thanks,John  
  6. Hi there!   I'm trying to communicate a Weintek cMT2128X with a CP2EN via Ethernet. The thing is I'm getting 'No device response' messages every 2-3 seconds. They'are connected at some point because some values are updated, but the connection error keeps showing up. So far I've checked: - Comm. settings are okay in both sides - Wiring is good - Happens the same with a CJ2 CPU. - There are two arrays of 50 UINT each, I don't know if that's slowing things but that would surprise me...   I've worked with Weintek HMIs before (communicating with different CPUs: LOGO!, CP1, CJ2...) and never had this problem. I just set the IP addresses and everything was working fine, so I guess I'm missing something. Hope you can throw some light at this! Thanks in advance
  7. Hi   I want to look into a program i recieved, but i get this error when trying to open it. Im running the 30day trial atm, but i got the same error when I ran the 1.45 version earlier.   Never used sysmac before, so if anyone has a tip, it would be nice
  8. Hi all , I have been using MELSEC - Q series plc for the past two project i dont find any issue with that but for the third project  used same PLC same model but there is issue which I found unable to resolve  The issue is when i try to communicate PLC using LAN cable by direct ethernet connection it works normally but by communicating using HUB network I cannot communicate, I checked all the parameters setting, I dont know what is the issue even contacted mitshubshi service to troubleshoot but they are not responding  So here i am for your guidence to solve this issue   see the images below to analyse this issue This connection is direct ethernet connection which works normally    The parameters are set and writed to PLC The IP is set to my PC for communication  When i try to find the cpu in the network it shows the cpu IP  After that I checked for connection Test it show error I have also attached the Network route which i used to communicate  Network Drawing.pdf I hope someone will help me to solve this issue Thank you , madhan ravichandran
  9. Hi all, I have an issue with Mitsubishi GOT Simple Series. After write to GOT, everything okay. All the hmi button functioning well. But after turn off and on the hmi, It will appear "SCREEN ERROR".  Any idea what can I check? 
  10. Hello,   I hope somebody can help me give me hint on where I could look. I do have an MAM command that is throwing error 11. "At least one axis is not configured to a physical motion module ora has not been assigned to a Motion Group." The error message itself is clear but the Servo is running flawless until it suddendly stops doing this (the customer states that it mostly happens after an EStop). The EStop is hardwired via the STO inputs and those are active while the error is shown. So far the only way to reset the error is to shutdown the machine and power it up again. I can't find any errors in the error logs that would hint to dig deeper. Has anyone had this error or knows how to solve this?   PLC: CompactLogix 5370 Servo: Kinetix 5500
  11. Mewnet RS232c

    I wanted to online in FPWIN GR7s to FP-X C30t but it show MEWNET device
  12. Hi All, I need access to a the Safety function blocks within a safety CPU using sysmac studio on a machine we are upgrading.. Is there a generic password available to gain access? Best Regards, Paul  
  13. GOT2000_Comset & GOT2000_Slave

    GOT2000_NG_1000.lib NOT FOUND HOW TO SOLVE THIS ? PLEASE HELP.
  14. Dear reader, I am writing a C# program using the library  ‘EasyModbus’ that needs to communicate with Siemens WinCC via the connection type ‘Modicon modbus’ I have written a version using the ‘float’ data type in WinCC and that works perfectly. Here my code fragment: Method to convert ‘double’ to bytes in C#: public static byte[] DoubleToModbusFloat(double value) {     byte[] bytes = new byte[4];     float floatValue = (float)value;     int intValue = BitConverter.ToInt32(BitConverter.GetBytes(floatValue), 0);     bytes[0] = (byte)(intValue >> 24);     bytes[1] = (byte)(intValue >> 16);     bytes[2] = (byte)(intValue >> 8);     bytes[3] = (byte)intValue;     return bytes; } Call of the method and loading of the modbus registers in EasyModbus: Bytes = PublicCode.DoubleToModbusFloat(TmpDbl); int n = (int)ModbusStartAddress + ((i - 1) * 2); mb.ModServer.holdingRegisters[n + 1] = (short)((Bytes[0] << 8) + Bytes[1]); mb.ModServer.holdingRegisters[n + 2] = (short)((Bytes[2] << 8) + Bytes[3]); So far so good – this works fine. But I also want to be able to use the ‘Double’ data type in WinCC because I sometimes need more precision than the 7 figures of the ‘float’. I thought it would simply be a case of doubling up the code so I wrote: Method to convert ‘double’ to bytes in C#: public static byte[] DoubleToModbusDouble(double value) {     byte[] bytes = new byte[8];     long intValue = BitConverter.ToInt64(BitConverter.GetBytes(value), 0);     bytes[0] = (byte)((intValue >> 56) & 0xff);     bytes[1] = (byte)((intValue >> 48) & 0xff);     bytes[2] = (byte)((intValue >> 40) & 0xff);     bytes[3] = (byte)((intValue >> 32) & 0xff);     bytes[4] = (byte)((intValue >> 24) & 0xff);     bytes[5] = (byte)((intValue >> 16) & 0xff);     bytes[6] = (byte)((intValue >> 8) & 0xff);     bytes[7] = (byte)(intValue & 0xff);     return bytes; } Call of method and loading of the modbus registers in EasyModbus: Bytes = PublicCode.DoubleToModbusDouble(TmpDbl); int n = (int)ModbusStartAddress + ((i - 1) * 4); mb.ModServer.holdingRegisters[n + 1] = (short)((Bytes[0] << 8) + Bytes[1]); mb.ModServer.holdingRegisters[n + 2] = (short)((Bytes[2] << 8) + Bytes[3]); mb.ModServer.holdingRegisters[n + 3] = (short)((Bytes[4] << 8) + Bytes[5]); mb.ModServer.holdingRegisters[n + 4] = (short)((Bytes[6] << 8) + Bytes[7]); However, this code does not work correctly. I have tried all combinations of byte and word reversal, and whatever I do WinCC either displays nonsensical values or ‘####’ showing that it cannot display the value. I have tried reading as much documentation as I can but it still looks to me as if I am doing the right thing. Also, I have downloaded a number of ‘modbus master’ code examples, and they seem to be able to read the ‘Double’ from my program without any issues. In WinCC I also see that there are two types of double – ‘Double’ and ‘+/- Double’ – I am also unsure as to why this is – there is no ‘+/- Float’ data type, which seems inconsistent to me. I am obviously missing something, but cannot seem to discover what exactly. I hope that someone can point me in the right direction as to what I am doing wrong. Please see attached word file for a picture of the configuration of the connection in WinCC.   Thanks in advance for any help !, Dave Long Double trouble.docx
  15. Hello! I'm currently using NB designer v1.531 (Build 210511) and I'm having compilation errors. It states: Connecting... Connection Error PT HMI0 Compilation error! Cannot create pkg files! I'm have trouble understanding, what does this error mean? I'm not connecting to any HMI, I just want to compile the program and test it offline. The weirdest thing is that if i click "Compile" enough times, it will eventually compile, but this is really interrupting the workflow. Does anybody else have this issue?  
  16. I am trying to setup a CC Link between two machines. I have done this before without issue, but for some reason this is not going well.. I added a second CC link card to CPU2 and set it as ST 24 for the CPU1 network.  CPU 1 : Master.   cc0.jpg.   The original machine was setup using TO/From for each station, so i couldn't add this new link through the GUI.  CPU 2: Local cc1.jpg  When i try to use the GUI to setup this side the buffer stops working. but if i activate any TO/From instruction here i get a system fault with a 2110 SP. Unit Error CPU2 buffer cc2.jpg. But when i block the TO/From you can see the buffer is working at that exact same location specified.    2110 error says I am addressing the wrong card but the buffer proves that I am not. 
  17. Data register over flow

    Hi, data registers are getting full, because of extremely high speed pulsing is there any way , if the data value in register goes above the capacity of 32 bit register, it automatically attaches itself to next set of data registers so lets say if data was written in D10,D11 Upon reaching the limit, it goes to D10, D11, D12, D13 please share if there is an alternate way to do this
  18. Data register over flow

    Hi, data registers are getting full, because of extremely high speed pulsing is there any way , if the data value in register goes above the capacity of 32 bit register, it automatically attaches itself to next set of data registers so lets say if data was written in D10,D11 Upon reaching the limit, it goes to D10, D11, D12, D13 please share if there is an alternate way to do this
  19. Hello, has anyone noticed that plenty (not all) forum posts are changed to quotes from TWControls? What is happening here?  Hopefully only a momentary breakdown  
  20. Hi, I'm Jovel, I'm new to learning how to program PLC. Just want to learn how to use Omron Sysmac Studio . I have a question about the Data Type Data Type - Structure ( Offset Type - Offset Byte )  / Union   I Don't Understand this 2 Data types and how going to use them, can anyone teach me and have a sample program? Thank you
  21. Does anyone know how to change the reading on Omron servo motor reading from negative to positive? The encoder is reading negative values when it is moving in the forward direction.  I am using 1S servo on NX1P2 controller on Sysmac studio software.  Please suggest. 
  22. i just got my NX1p2-1140DT controller with a R88D-KN04-ECT. i conneted every thing and directy got the 87 message on the display. i found out dat is becous wrong wiring I dont have the I/o cable incallt with omron they where saying that i don't need it and i can controll the motor controller full via ethercat. i already try to change to pdo mapping. what am i doing wrong? can someone help me? is it indeed true i dont need the i/o cable  thanks in advance for helping.
  23. Array A INT[32] Array Index B INT Destination C INT I am trying to move an Array (A) Element (A[2]) using a symbol (B) in ladder into a destination symbol (C) C = A [ B ] Result: ERROR: Array Index of Operand 1 out of range at rung 1 ( 6, 0 ).  The documentation suggests that it is possible, but I am unsure if there is something I am doing incorrectly. Note* Fixed indexing works with no errors Is there another method to accomplish this?   PLC : CJ2M CPU31 CX- Programmer: Verion 9.74 Update 1: If I go online to the PLC It does look like the array look up is working. Is the issue with the mov block? Update 2: I changed the memory locations which has caused a different error to appear. This error is clearer but does not explain the manual excerpt I posted further up ERROR: Only the constant can be specified for the index of the array.  at rung 5 ( 6, 0 ).  Update 3: Solution 1 I managed to hack together a proof of concept using pointers and indirect offsets  Update 4: Solution 2 For some strange reason things work as expected inside of the function blocks so I made one where the array is In-Out and with an input and output respectively. Note* External reference to pointers inside of the function block produced an error. Function block Logic     Update 5: Solution 3 Now I feel like I am going crazy, I tried just the original code again and it works... I have no idea why and if it was not for all the documentation I would be lost as to why it works now... Update 6: Conclusion It seems to have array indexing work the array index must exist in the D Memory Block. The reason it did not work above is because I somehow had a MOVR block when I tested after moving all the variables to the D Memory Block. I hope this journey helps someone else :)
  24. Hi All I am trying to connect Cognex OPC Server with Mircrosoft SQL Server (SMSS). Do you have any idea how to do that? I couldn't find relevant information online.
  25. CP1W TS001

    Hai, I have problem with my CP1W TS001, suddenly reading result always #7FFE.  i use CP1E-N60 and 2 expansion module, AD041 and TS001. I put TS001 after AD041 then my program code as follows : mov #8051 105 mov 7 D20 mov 8 D22 the reasult at D20 & D22 always #7FFE could someone help me to solve this problem?