Data Logging software reqd

I cannot help in this area.

oh.. I can manage this area because I found a VBA for EXCEL source code in web. It can get the ASCII data from serial port. And I also tried to print Vmem to my PC HyperTerminal via DL06 port 2. So I will work on this part by myself.

Hope you can help in PLC part. Thanks
 
Hope you can help in PLC part.

PLC 06

// Rung 1
// Address 0
#BEGIN COMMENT
"This rung takes the hours on the PLC clock and mutiplies them by 100 thus shifting them "
"to the left two spaces. Then we add the minutes so that the number 1530 equals 15:30 "
"military time"
#END
STR SP1
LD V7770
MUL K100
ADD V7767
OUT V2000

// Rung 2
// Address 5
#BEGIN COMMENT
"every time the motor stops or starts the military time is shifted into the Vmem registers "
"starting at V10000 and ending at V1777 for a total of 4096 readings"
#END
STRPD Y0
ORND Y0
LD Kfff
LDA O10000
MOV V10001
LD V2000
OUT V10000

// Rung 3
// Address 13
END

// Rung 4
// Address 14
NOP


#BEGIN ELEMENT_DOC
"Y0","","","motor"
"V2000","","","hours and minutes 1530 = 15:30 military time"
"V7767","","","minutes on the PLC clock 00 - 59"
"V7770","","","hours on the PLC clock 00 - 23"

#END
 
Thanks milldrone

Let me take a look and digest it... thanks a lot.


so funny, a think a lot to write a logic to shift 1 Vmem address to store a new time stamp.... I don't know there is a function to move Vmem to next location.... I think I need review manual and see more sample code... thank you


PLC 06

// Rung 1
// Address 0
#BEGIN COMMENT
"This rung takes the hours on the PLC clock and mutiplies them by 100 thus shifting them "
"to the left two spaces. Then we add the minutes so that the number 1530 equals 15:30 "
"military time"
#END
STR SP1
LD V7770
MUL K100
ADD V7767
OUT V2000

// Rung 2
// Address 5
#BEGIN COMMENT
"every time the motor stops or starts the military time is shifted into the Vmem registers "
"starting at V10000 and ending at V1777 for a total of 4096 readings"
#END
STRPD Y0
ORND Y0
LD Kfff
LDA O10000
MOV V10001
LD V2000
OUT V10000

// Rung 3
// Address 13
END

// Rung 4
// Address 14
NOP


#BEGIN ELEMENT_DOC
"Y0","","","motor"
"V2000","","","hours and minutes 1530 = 15:30 military time"
"V7767","","","minutes on the PLC clock 00 - 59"
"V7770","","","hours on the PLC clock 00 - 23"

#END
 
Last edited:
Hello rigicon, do you mean that Advanced HMI support DL06?

You'll need to ask Archie that question. Maybe he or someone else has a driver for the DL06 or it can use a generic driver.
 

Similar Topics

Hi everyone id like to start by saying im not a PLC programmer so my technical terminology is limited. i would like advice on what software is...
Replies
4
Views
327
Hi All, I am looking for recommendations for a data logging software package that can be used for a simple 1 PLC installation. The installation...
Replies
13
Views
1,450
Need some recommendations on a inexpensive data collection software even free if possible. Most of the PLCs are GE 9030s and 2 GE 9070s and nidec...
Replies
1
Views
1,832
Need some recommendations on a inexpensive data collection software even free if possible. Most of the PLCs are GE 9030s and 2 GE 9070s and nidec...
Replies
7
Views
2,494
Hlo All,, Greetings:bow: I need to find some softwares which can import data from plc tags or hmi and log in my pc in anyway. kindly let me know...
Replies
1
Views
1,283
Back
Top Bottom