-
Content count
4149 -
Joined
-
Last visited
Community Reputation
303 ExcellentAbout BobLfoot
-
Rank
The Wizard
- Birthday 05/30/63
Profile Information
- Gender Male
- Location New York Capital District
- Country United States
-
The way I understand it Time Sync shares the internal clock of the master with the slave unit so they all run the same time, it does not set or change the time of the master. You need to locate the source of time to the master (plc) it could be a GSV Statement in the logic, it could be an HMI or PC writing time to the plc. The first steps I would take are as follows: 1) Check the program for GSV WallClockTime Instruction. 2) CHeck the web page of the Ethernet Card(s) and see what connects to this PLC that might be setting its time.
-
The way I understand it Time Sync shares the internal clock of the master with the slave unit so they all run the same time, it does not set or change the time of the master. You need to locate the source of time to the master (plc) it could be a GSV Statement in the logic, it could be an HMI or PC writing time to the plc. The first steps I would take are as follows: 1) Check the program for GSV WallClockTime Instruction. 2) CHeck the web page of the Ethernet Card(s) and see what connects to this PLC that might be setting its time.
-
I may be going over simplification here but if you have a working machine written in step logic with 10 Steps then create 10 Event Tasks in a Studio 5000 Program. Copy Step 1 logix to Event 1, Step 2 to Event 2 and so forth. Then the only thing left if to masage the event triggering condition to whatever it needs to be. See this manual for more about event programming -- https://literature.rockwellautomation.com/idc/groups/literature/documents/wp/logix-wp003_-en-p.pdf
-
I may be going over simplification here but if you have a working machine written in step logic with 10 Steps then create 10 Event Tasks in a Studio 5000 Program. Copy Step 1 logix to Event 1, Step 2 to Event 2 and so forth. Then the only thing left if to masage the event triggering condition to whatever it needs to be. See this manual for more about event programming -- https://literature.rockwellautomation.com/idc/groups/literature/documents/wp/logix-wp003_-en-p.pdf
-
Can not change gateway address on ENBT
BobLfoot replied to Dave I's topic in Allen Bradley / Rockwell Automation
When you changed the Gateway from the RSLogix ENBT properties did you do it online on a running PLC or offline in the project and download to the controller. Not sure it will have a difference, but if you can change it in the offline program and downlad it to the PLC it should stay. -
MO8SE Sercos Motion Module Reset
BobLfoot replied to JustDoIt's topic in Allen Bradley / Rockwell Automation
you should have an SSV for that -
MO8SE Sercos Motion Module Reset
BobLfoot replied to JustDoIt's topic in Allen Bradley / Rockwell Automation
you should have an SSV for that -
VFD Guy liked a post in a topic: Multiple PF525 sto wiring ?
-
Multiple PF525 sto wiring ?
BobLfoot replied to jdolecki's topic in Allen Bradley / Rockwell Automation
yes and each drive draws 6ma. -
Multiple PF525 sto wiring ?
BobLfoot replied to jdolecki's topic in Allen Bradley / Rockwell Automation
The manufacturer documentation you show is very clearly labelled "Coast with TWO Powerflex drives". I would not assume it can be applied to THREE without checking with Rockwell Technical Experts. There is the possibility that the Relay Output cannot support more than two drive input units. If there is a "coast with MULTIPLE Pwoerflex Drives" example then I would be much more comfortable with doing what you're asking from a single relay. -
Panel View Plus 7 Standard - 1783-NATR Issues with Factory Talk Linx
BobLfoot replied to Chris Elston's topic in Allen Bradley / Rockwell Automation
i'd suggest wiresharking and pay attention to port 44818. my google searches say rslinx used it but it went to being a security port in the newer units. -
Serial Print from 1769-ASCII
BobLfoot replied to BrewsterCreek's topic in Allen Bradley / Rockwell Automation
Have you followed the RA Manual and setup the Controller tags for the module? Once you have them it is a matter of writing a sequencer to load the output array and read the input array. I don't have any code left because the last time I did this was 2005 talking to Sick BCR Units. -
Overloaded Ethernet IP network (?)
BobLfoot replied to RFurey's topic in Allen Bradley / Rockwell Automation
May be a rabbit trail, but are you using non-repeating Prime Number Update Intervals on all your OI Topics? Or did you set everything to the default 1000 ms update rate? -
ONE SINGLE BUTTON TO COMPLETE PROCESS ON EACH AND EVERY RUNG
BobLfoot replied to SSrikakolum's topic in Allen Bradley / Rockwell Automation
On each branch where you move a new value into StepNo add an OTL of a new Tag called NewStepFlag. Put an XIO of NewStepFlag at the start of each rung. Then at the end of ladder file put and XIO of the Pushbutton and an OTU of NewStepFlag. -
Tim come up with a great tool there, but I've never done enough setups to justify buying one.
-
Real-time tag data in email
BobLfoot replied to PaulKim1003's topic in Allen Bradley / Rockwell Automation
There may be a better way to do this PaulKim, but a string tag is actually a defined data type of several elements. A Length Variable usually a SINT/DINT and then an array of SINTS. To add tag data to your email body it is a simple matter of copying the TAG from it's register into the proper SINTs of the string for body. And then adjusting the length variable accordingly.