====RecordAnalogue==== The **RecordAnalogue** function of the [[histhelper|HistoryFill]] class is used to record the history of an analogue point. ===Parameters=== ^Parameter^Type^Usage^ |Address|string|The full address of the data point| |Date|datetime|The UTC date/time of the data point| |Value|varies|The value recorded| ===Example=== discrete, analog = history.SplitAddresses() for d in analog: #Do work here to determine a time (currenttime) and value (value) for the point... history.RecordAnalogue(d,currenttime,value) ===See Also=== After filling in all of your analog data, you may - depending on your data - choose to call [[Upsample]] or [[Downsample]] to make your data more useful or improve performance.