Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

Function Information

Image Added
  • All functions must be used with parenthesis.

alarm.createAllCsv

Saves all the alarm messages as a CSV file.

Subroutine

alarm.createAllCsv(Storage type);

 

 

Description

Saves all the messages at the assigned Storage type as a CSV.

Enter either the number or string shown below as the user’s declared Storage type.

1: Storage.Local

2: Storage.Usb

3: Storage.SdCard

Examples

Saves all alarm contents in SD/MMC.

alarm.createAllCsv(3);

Saves all alarm contents in USB flash drive.

alarm.createAllCsv(Storage.Usb);

...