dragosel80

MrPLC Member
  • Content count

    7
  • Joined

  • Last visited

Community Reputation

0 Neutral

About dragosel80

  • Rank
    Newbie

Contact Methods

  • ICQ 0
  1. Data Issue

    Hi, I want to refer at data D102, D104, D106, ... using D100. The only method I know and works is: Z2 := 2; D100Z2 := K0; Is there another solution?.
  2. Changing A F930got Screen Using Fx1n

    Thank you, aldarin. It worked. Now, I'm concerned with the second issue: to attribute other functions to the cursor keys from f930got-k (the one with 28 keys).
  3. As the title says, the question is how can I change a f930got screen using a fx1n PLC? instance: I have to change the screen when one input becomes ON (there are several applications in which I need to change the screen via PLC). I've tried the following code: IF X3 THEN D0:=1; //change to screen 1 END_IF; but it doesn't work. Another issue which preocupies me is how to attribute other functions to the following keys: up, down, right, left, ent, set, esc... from f930got-k (I have the display with 28 touch keys). I want to navigate trough screens or items using the arrows keys or to push some switch using ENT. Thank you.
  4. Setting a high speed counter value

    I use a FX1N PLC on GX IEC Developer 6.00 can you give me a link from where I can download GX IEC Developer 7.01? Thank you.
  5. Setting a high speed counter value

    Hello, Please look at the following sequence: counter_m(M8000, CS251, 10); IF X4 THEN CN251:=D200; END_IF; what can I do to correct the instruction "CN251:=D200" , because at compilation I receive the following information "type mismatch". Thank You.
  6. Alpha2 AS-Interface

    hello, I have to develop an aplication which needs to connect two alpha2s. does anyone tried to connect two alphas? i know that there is AL2-ASI which can help. please, if anyone tried this and succeed give me more informations about this.
  7. Alpha2 - Computer Link

    I want to integrate an alpha2 in a computer application. I follow all the steps sugested by mitsubishi. I build a cross-cable exactly as described in manual. I configure the AL-VLS/WIN-E exactly by manual. I write the following code in LabWindows/CVI and the alpha2 not communicate with the computer. code: char test[5] = { 0x2, 0x3, 0x41, 0x0, 0x1 }; char receive[5]; OpenComConfig (COM1, "COM1", 9600, 0, 8, 1, 512, 512); ComSetEscape (1, SETDTR); // DTR must be set to hi-level ComSetEscape (1, SETRTS); // RTS must be set to hi-level ComWrt (COM1, check, 5); ComRd (COM1, receive, 5); in most cases I receive the same string I send. could be something wrong with the AL2-GSM-CAB? help, pls... this is urgent!!