Versions Compared

Key

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

...

Expand
titleTo test this, we can set the component to run every 2 seconds using component.setTimer{delay=}

This is a complete little program to increment a custom number field:

Code Block
require "COUNT.COUNT"

function main(Data)
   --Poll the component every 2 seconds
   component.setTimer{delay=2000}
   local NextId = COUNTget("NextId")
   NextId = NextId+1
   COUNTset('NextId', NextId)
end

component.setTimer{} is used here to run main every 2 seconds.

Expand
titleThe COUNT library solves this problem by giving a convenient interface to get and set a custom field value

Remember Custom Fields the values for these are stored on disc in JSON. This means we can load and save them programmatically.

This is how this library works.

...