Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Topics - aquilmustafa

Pages: 1 [2] 3
16
Support Questions / Omron Serial Host Link connection problem
« on: January 05, 2017, 07:25:49 AM »
Hi All,
Happy New Year every one.

Recently i'm trying to get connected to Omron CP1-E PLC using Serial Host-Link with AdvanceHMI V3.99S. Problem is whenever i try to get connected it throws Error "No response from PLC. Ensure baudrate is correct".

The parameters on OmronSerailHostLinkCom1 is 9600,7,E,2 with node address 0, unit address 0 the same is in PLC

I've tried using serial cable with connection as 2-3-9 on PLC side with looping 4-5 and on PC side 3-2-9  as it works with HMI but with same result as displayed above

Then i got another cable connection details saying 2-3-9 with looping 4-5 and on PLC side and on PC side 2-3-5 with looping 4-6 and 7-8 tried that too but with same result

I'm confused as to weather its as problem of serial communication cable or the PLC protocol settings are wrong.

Please guide me.

17
Open Discussion / Omron Ethernet Fins String Value Read Write
« on: November 30, 2016, 08:11:18 PM »
Hey Archie,

I've been Omron Ethernet Fins Driver from v3.99r to write String to array of (D200.....44) of data type string defined in Omron PLC. I've written code to do so.  The code is as follows:

    Public Function StrToHex(ByRef Data As String) As String
        Dim sVal As String
        Dim sHex As String = ""
        While Data.Length > 0
            sVal = Conversion.Hex(Strings.Asc(Data.Substring(0, 1).ToString()))
            Data = Data.Substring(1, Data.Length - 1)
            sHex = sHex & sVal
        End While
        Return sHex
    End Function

The problem with this code is it only writes to 1 character to array of strings and leaves all the other characters.

Could you please guide me as to where i'm going wrong.

18
Open Discussion / Omron Ethernet Fins Float value read
« on: November 30, 2016, 08:37:45 AM »
Hi,

please guide me as to how Omron Ethernet Fins of V3.99r can read Float values

19
Hi,

I'm using Omron Ethernet Fins Driver with Fins-UDP to connect to NJ-101 Controller using AHMI version 3.99r. Now the Data I receive and send are both in Hex format as I've enabled "TreatDataAsHex = True".

The Problem is that I'm am unaware of how to convert this Hex Data to Readable format and convert the Readable data to Hex Format to send to PLC.

Is there a way to read arrays directly from Omron PLC as it could be done with Clx drivers.

Please Help me.

20
Open Discussion / OPC-UA Server with AHMI
« on: November 02, 2016, 10:08:09 AM »
Hi guys,

One of my client has a centralized COPA-DATA S.C.A.D.A in the Plant. He needs me to send the data to his SCADA via OPC-UA as Server from AHMI. I've no experience in this regard any light shed on how or any other way to share my Data with them will be of great help.

21
Open Discussion / POPUP Entry Keypad Password Locked
« on: November 01, 2016, 03:46:58 AM »
Hey Archie,



Can i just have a password protection for Keypad popup of Digital-Panel Meter and Basic Label.

22
Open Discussion / Blank Variable data in AHMI v3.99f with Clx drivers
« on: September 16, 2016, 02:20:50 AM »
Hi,

I'd completed one project and installed it somewhere around 6 months back. Recently the client came back with complaint that sometimes there are values in tags but the AdvancedHMI v3.99f shows those values as blank. I've increased the Poll rate override from around 1sec to 2 sec of Clx driver but problem still persists. There are around 8k tags getting logged. Please help me resolve this issue.

23
Open Discussion / ModbusTCP
« on: August 17, 2016, 12:36:41 AM »
Hey Guys,

I know this is off topic but didn't knew who else to ask to. I have written my own Modbus-TCP Protocol and I'm able to read words. But i don't know how to read floating points and characters. Any help in that direction would be greatly appreciated.

24
Open Discussion / Convert Modbus Holding Register Data to character
« on: August 01, 2016, 04:54:55 AM »
Hi,

I need some help. I'd like to convert Holding register data coming from Telemecanique PLC to Character format. Cause my PLC is Storing String in Holding Registers. Any help would be appreciated.

25
Open Discussion / Adding drivers programatically
« on: July 22, 2016, 11:33:07 AM »
Hi ,

I'd like to add the drivers programmatically while loading the Software could someone please guide me as to how that could be done.

26
Support Questions / Read String From Holding Registers
« on: July 08, 2016, 08:30:35 AM »
Hi Archie,

I'm using AHMIV399m. I'm connecting to Telemecanique PLC TM218 via Modbus TCP. Will that be possible to read String Values passed from PLC in Holding Registers to be able to read in AHMI. If yes could you please guide me as to how that could be done.

27
Open Discussion / ASCII ARRAY WITH CLX CONTROLLER
« on: June 04, 2016, 05:48:25 AM »
Hey,

I've been trying to read and write the RFID data from CLx controller and have been successful in reading them from PLC. In PLC we have created a ASCII Array into which RFID  data is read. That data is now stored in the DB. Now when the PLC asks for RFID data with suffix to be written in PLC into the same ASCII Array. I've been using this command to do so.

 strx = AtStation.Text
                    If strx <> "" Or strx <> "0" Then
                        For i = 1 To strx.Length
                            str_arr(i) = Mid(strx, i, 1)
                        Next
                        EthernetIPforCLXCom1.Write("RFID_SEARCH_RESULT.DATA[0]", str_arr.Length - 1, str_arr)
                    End If
                End If

But EthernetIPforCLXCom1.Write throws an error

{"Conversion from string ""D"" to type 'Double' is not valid."}

Please help..

28
Open Discussion / Zebra Printer with AHMI
« on: May 30, 2016, 06:21:14 AM »
Hi,

I have AHMI running on a Machine communicating with Clx via Ethernet port. Tricky part is that i want to print the String to Zebra Barcode printer via Ethernet on 9100 port when i receive a command from PLC.
OR
Is there a way to close port no 44818 and open 9100 send Printer data and close 9100 and restart 44818 for communicating with PLC

How is that possible please help me 

29
Open Discussion / DataSubscriber2 Error
« on: February 22, 2016, 07:22:53 AM »
Hey Guys,

I've been working with DataSubscrber2 where I've called an Boolean array of 800 called "ALARM" but whenever datasubscriber2 is called and array no is greater then 0 the below attached error pops up. Please guide me as to what's wrong and how to correct the mistake

30
Open Discussion / AdvancedHMI 3.99 b in V.S 2010
« on: February 22, 2016, 03:51:16 AM »
Hey Archie,

I'm using Visual Studio 2010 could you please convert 3.99b from VS2012 to VS2010 and provide us.

Pages: 1 [2] 3