Time between a reading and other

Hi, how to read a list and to do a time between a reading and other?
I'm using the clock, but i don't do it.

How are you reading the list?

  • from a file?
  • from the Web?
  • with your eyes?

Any way, you need a place to remember when you started reading, so you can compare that with the current time when you stop reading.

Clock1.Now() gives you the current Instant, and Clock1.Duration gives you the time span between two Instants.

(Check the tool tips on the Duration block. It might need milliseconds.)

It would really help if you provided a screenshot of your relevant blocks, so we can see what you are trying to do, and where the problem may be.

To get an image of your blocks, right click in the Blocks Editor and select "Download Blocks as Image". You might want to use an image editor to crop etc. if required. Then post it here in the community.

Taifun


Trying to push the limits! Snippets, Tutorials and Extensions from Pura Vida Apps by icon24 Taifun.



and show 1-2 examples....

I move each line in the list to a checkbox and I need to give time between each line moved.

Use the Clock.Timer event for this, do not use a for loop...
Each time the event fires, move the next line to the checkbox

Taifun