Jump to content

realisator

MrPLC Member
  • Posts

    11
  • Joined

  • Last visited

Everything posted by realisator

  1. I'm not familiar with MapleJet printers but i'm pretty sure it needs correct frame to know when the text starts and ends. here is what AI says. Be careful because AI may be wrong 🙂 best is to contact MapleJet directly and ask for manual.
  2. I was working only with NX-CIF210 but from what i see in your program You're not sending any start or end code in your frame - how does the communication frame look like for Your printer? Second thing I would rather use CTS/RTS flow control.
  3. I checked it in OMRON's Network Configurator too and it looks it's not compatible with OMRON PLC's. I checked on Rheonics support site and this meter is compatible with Rockwell, Wago and Schneider Electric (and any other Codesys i suppose). Maybe OMRON support know some workaround.
  4. Hi, Never had similar situation but I would try to do it like below: 1. Create Input Global variable (373 bytes) 2. Register this variable in EIP TagSet setting (only input, output leave blank) 3. Assign originator variable (only input) 4. After "Rebuild Controller" Sysmac studio shows no errors or warning so it should work. 5. Transfer Config to controller I don't have a physical PLC right now to check it so it's just a possible solution.
  5. Hi, The value is almost 0 ( 3.14159 is just approximation of PI) If there's a "." at the end of monitored value that means that this value is not all displayed.
  6. Hi, In Sysmac Studio in Ladder You have to assign type in constant value ("Type#Value"). For example UINT#1 or DINT#2 etc.
  7. Hello, Siemens HMI's using VB Script language which is different than VB.Net language. You can't just copy and paste scripts from Tia Portal to Symac and vice versa. Search on the forum. Somewhere there is an example of script to copy files between locations.
  8. Hi, It looks there is mistake in xml file. I checked it in Sysmac Studio and Siemens Tia Portal. Parameter "Register Set To Read" has 4 bits of length :) Maybe thats why it can't be assign correctly. It's just my guessing. Below what Tia says about this variable.
  9. Yes there's a memory leak when updating constantly Image.Source. looks like every time new image instance is created in RAM memory so after some time You'll get out of memory Error.
  10. I checked it too because i've never used it before and it displays the image but there's a problem with memory leakage what is common on windows CE. So it's good solution but only for one image load process. Example of code : Image0.Source = "/FTP/obraz10.jpg ' (it must be image path that doesn't exist to initialize) Dim ImagePath As String = ("/FTP/" & ImageName & ".jpg" ) Image0.Source = ImagePath So i checked another object which can display image file and DataLamp is able to do it without any problems. DataLamp0.BackgroundImage = "" ' (initialization) Dim ImagePath As String = ("/FTP/" & ImageName & ".jpg" ) DataLamp0.BackgroundImage = ImagePath It may probably not work if the file size is too big. I made test on KEYENCE IV2 vision sensor which sends the file 640x480.
  11. Hi, Instead of using Media Player you can use "Source" method for image display object. It lets you to overwrite image even if it's displayed already. Example : Image0.Source = "my image path".
×
×
  • Create New...