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.


Messages - support

Pages: 1 ... 9 10 [11] 12 13 ... 212
151
Hi Gary,

We have found out that a bug was inadvertently introduced into the TRiLOGI version 7.1x simulator (your program actually worked correctly in the older version 7.0). This however does not affect the program if it is run in the PLC. So the issue was only with the simulator.

This bug has been fixed and will be included in the next release of i-TRiLOGI software. Meanwhile we have communicated with you via email to provide you with an interim software version that allows you to simulate your program.

Thank you.

152
Thanks for the bugs report. The engineering will run some test on your reported issues and get a fix soon. We will let you know when the issue has been resolved.

153
Technical support / Re:Welding SCR application
« on: June 12, 2017, 10:15:38 AM »
Sorry that is not supported on Nano-10 or FMD.  The phase-cut is supported in firmware of Fx CPU but there is not enough resources on the Nano-10 and FMD PLCs to support this function.

154
Technical support / Re:Timebomb
« on: June 07, 2017, 06:10:49 PM »
Do you want to partially disable your program or you want to entirely shut it down? The best way to time bomb the program is to define a counter/timer to specify the limitations on your application and when that value is reached, the entire program or partially will shut down. For instance in preventive maintenances, programmer decides to stop the system working but should keep the life safety related sections of the program fully functional.

155
Technical support / Re:Self Starting Timer
« on: June 06, 2017, 12:35:47 PM »
Here is the .PC6 program

156
Technical support / Re:Self Starting Timer
« on: June 06, 2017, 12:34:34 PM »
How long do you need to keep the output? If the output stays on for 1 second every 30 minutes does it work for you?

If so you can try the attached program. The 1 second clock pulse drive an up-counter that counts to 1799 and roll over to 0 (total 1800 seconds = 30 minutes). When the counter rolls over to zero the output is turned on by the ladder program. One second later the counter is incremented to 1 again and the counter contact is open and the output is turned OFF.

You can simulate the program easily by running simulator. If you don't want to wait 30 minutes to see the result you can speed up the simulation: click "View" and click "Edit" button and then enter the following expression:

CTRPV[1] = 1790

This will set the counter #1 value to 1790 and it will continue to increment until 1799 and roll over to 0. You will observe the output #1 being turned ON for 1 second when counter present value = 0.

157
Technical support / Re:TL7.12 Build 3
« on: May 30, 2017, 11:33:43 PM »
Thanks for your report!

Starting from TRiLOGI 7.12 and 6.52 if your PC has internet connection, the help files will be loaded from the web site. But if you have no internet connection then the help files will be loaded from the local installed copy. This permits us to update the documentation (such as your reported issue) without requiring the user to re-install the program in order to get the corrected help files.

The TL7 Reference Addendum issue and the SAVE_EEP# that you have reported have been fixed. You will be able to get these help files from your current 7.12 and 6.52.


158
Technical support / Re:TL7.12 Build 3
« on: May 27, 2017, 09:37:12 AM »
What is "softether" network?

Nothing has been changed with the networking or port handling in version 7.12 build 3 so I don't think that is an issue. Is there any configuration setup to connect to the 'softether" network?

You can download the previous version in the same i-TRiLOGI upgrade page. Scroll down to this link on the page as shown in the attached screen shot




159
Technical support / Re:Turbo Mode
« on: May 26, 2017, 12:45:52 PM »
Sorry I should have explained it better.
I have the PLC connected to a wireless router and I transfer and monitor the PLC using the wireless network
Thats how I discovered that everything will lock up if you click on used Turbo Mode

Is your PC connected to the same Wi-Fi network on the Wi-Fi router that the PLC is attached to?

If so, then most likely the failure is caused by Windows blocking incoming connection through the Wi-Fi.

First thing to check is to make sure that your Wi-Fi is setup as being connected to a private network. If your Wi-Fi is marked as public network then the Windows Firewall blocks all the incoming connection that Turbo Transfer mode need to make so it prevented the transfer. See this video if you have question:

https://tinkertry.com/how-to-change-windows-10-network-type-from-public-to-private

After changing the network to private you will need to add Javaw.exe to the firewall exception list. One way to trigger it is to first turn off the Windows fire wall on your private network. Then try to do a turbo transfer again and if it succeed you know it is the firewall issue.

When you manage to successfully transfer over Wi-Fi, then you can turn the firewall back on and then try again. This time Windows may warn you about the incoming connection by jawaw.exe and you should allow it as shown in the following screen capture:

If the exception rule is properly added you should be able to perform turbo transfer over the Wi-Fi.

(Note you may need to restart the PLC during your testing if the connection failed because a previous TCP connection may have been left half-open and preventing TRiLOGI from making another turbo transfer connection.)




160
Technical support / Re:Turbo Mode
« on: May 26, 2017, 11:30:04 AM »
One side note - Since you mentioned you are using version 7.11 you may want to upgrade to new 7.12 which have vastly improved search function. Simply type any characters while on the ladder editor and you are given a list of all the I/O labels that begin with that character - so you can locate any I/O labels without remember their full name.

Likewise while you are in the custom function editor, typing any text in the "Find" box will bring up a list of #define names, I/O labels, keywords etc that begin with the characters you type.  So that way you can locate whatever variable name you want to find using the "Find All" button.

We have been using these new time saving features for our own programming and find it a very helpful feature that would benefit TRiLOGI programmers and therefore we strongly recommend the upgrade.


161
Technical support / Re:Turbo Mode
« on: May 26, 2017, 08:48:10 AM »
What do you mean by "wireless" mode?

Note that Turbo Transfer mode in TL7 will not work if the PC running i-TRiLOGI is on different network from the PLC as it requires the server (PLC) to make a TCP connection back to the client (the PC) and this is usually blocked by the client side firewall if they are on a different network.

The regular transfer mode uses only the single TCP connection that the client makes to the server and would work even if the two are on separate networks.

If the client PC can make a VPN connection with the server so that the client join the server network then Turbo Transfer mode would work.

162
Technical support / Re:reversing bits
« on: May 26, 2017, 08:36:14 AM »
Below is a 16 bit reverse bit example.

A = &HF5A0  ' put any value you want in A

B = 0

FOR I = 0 to 15
   IF TESTBIT(A, 15-I)
      SETBIT B, I
   ELSE
      CLRBIT B, I
   ENDIF
NEXT

' Result: B = &H05AF if A=&HF5A0

163
Technical support / Re:Welding SCR application
« on: May 12, 2017, 11:10:10 PM »
Unfortunately it is not possible to use PWM to control the firing angle.

To properly control the firing angle you need a zero crossing detection and then compute the time lag until the SCR/TRIAC is fired.

The Fx2424 and Fx1616-BA and any SmartTILE-Fx based custom-made PLC support such built-in capability.

Please refer Chapter 18 (light Dimmer Control) of the Fx2424 User Manual for details.

You can download any user manuals from: http://www.triplc.com/documentations.htm

Thank you.

164
Technical support / Re:Blue Tooth
« on: April 28, 2017, 09:10:24 PM »
The SmartTILE, FMD and Nano-10 PLCs are all able to handle up to 10 incoming Ethernet connection simultaneously. Up to 5 Modbus TCP and up to 8 Hostlink connections are possible. The beauty of Ethernet is that you don't need 10 connectors to handle 10 incoming connection because the connections are virtual.

To understand how it works, you can try to open up a few i-TRiLOGI programs on your PC and connect all the i-TRiLOGI to the PLC simultaneously. Now if you change an I/O on one window you will see the same changes showing up on the other i-TRiLOGI instances. You can also connect a Modbus client software (e.g. the Modbus Poll program) to the PLC and you will see the Modbus register that are mapped to the I/O that you have changed showing the new values.

The PLC handles connection from client software automatically. So even if you have just transferred a blank program into the PLC and you can still use i-TRiLOGI clients and Modbus TCP clients to connect, monitor and change data on the PLC.  Give it a try and you will understand how it works.

165
Technical support / Re:Blue Tooth
« on: April 28, 2017, 11:17:16 AM »
Thanks again for the feedback. There is CAN bus hardware on the SmartTILE but no firmware support was developed for it. We are aware that CAN bus is widely used in car industry (as in in car entertainment, power windows etc) In Europe CANopen and CiA are widely used, but protocols that runs on CAN bus appear not too often mentioned for industrial automation in North America.

In any case today Ethernet support has become the most important communication interface, for which all our Super PLCs can handle very well. Unlike some PLCs that deploy Ethernet to serial interface that convert high performance Ethernet into low performance serial interface and therefore inherently limited, the Ethernet port on the TRi Super PLCs is tightly integrated into the hardware and firmware and therefore it is able to handle connections by multiple clients at the same time and support both Modbus TCP and Ethernet Hostlink command protocols simultaneously. It can even connect to a remote server to upload data to the cloud while simultaneously handle communication requests from all the connected clients.

Pages: 1 ... 9 10 [11] 12 13 ... 212