-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathaboutformu.lfm
42 lines (42 loc) · 1.51 KB
/
aboutformu.lfm
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
object aboutForm: TaboutForm
Left = 445
Height = 494
Top = 237
Width = 564
Caption = 'About'
ClientHeight = 494
ClientWidth = 564
LCLVersion = '3.4.0.0'
object Memo1: TMemo
Left = 0
Height = 494
Top = 0
Width = 564
Align = alClient
Lines.Strings = (
'Mooshimeter Runtime Log Processor v2.0 '
''
'Original code © Mechtron Systems 2017-2024 and was created with Lazarus/fpc by marko. '
'This means you can compile on Linux, Windows or Mac - WOW! '
'Original source code on github: https://github.com/mechtronsystems/mooshiruntimelog '
''
'You may add to, or change this software as required but the original contents of this file above this line must remain preserved and you must'
'distribute this notice with any software distributed in any form. This software is licensed under MPL ver 2.0 '
''
'This program reads a number of Mooshimeter log files and analyses the voltage and current data looking for major changes potentially indicating'
'change of state such as on and off. '
''
'A typical application example would be using a current transformer on a power cable to determine electric motor run times. '
''
'Basic Operation: '
'1. Load Mooshimeter Files '
'2. Analyse '
'3. Determine on and off cutoff limits from the histogram. Bins & Clip can help. '
'4. Process data '
'5. Save state .csv file'
)
ReadOnly = True
TabOrder = 0
OnChange = Memo1Change
end
end