Skip to content

Commit 4a673b3

Browse files
authored
Add files via upload
1 parent d6aa249 commit 4a673b3

File tree

3 files changed

+28
-13
lines changed

3 files changed

+28
-13
lines changed

avdweb_VirtualDelay.cpp

+8-4
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,14 @@ as published by the Free Software Foundation, either version 3 of the License, o
55
This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty
66
of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License at http://www.gnu.org/licenses .
77
8-
Version 10-1-2016
9-
Version 6-9-2017 elapsed(), added start()
10-
Version 19-9-2017 DO_ONCE without class
11-
Version 19-9-2017 fix rollover bug
8+
AUTHOR: Albert van Dalen
9+
WEBSITE: http://www.avdweb.nl/arduino/libraries/virtualdelay.html
10+
11+
HISTORY:
12+
1.0.0 10-1-2016
13+
1.0.1 6-9-2017 elapsed(), added start()
14+
1.0.2 19-9-2017 DO_ONCE without class
15+
1.0.3 / 19-9-2017 fix rollover bug
1216
1317
start _____|_____________________
1418
__________

avdweb_VirtualDelay.h

+11
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,14 @@
1+
/*
2+
Copyright (C) 2016 Albert van Dalen http://www.avdweb.nl
3+
This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License
4+
as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.
5+
This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty
6+
of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License at http://www.gnu.org/licenses .
7+
8+
AUTHOR: Albert van Dalen
9+
WEBSITE: http://www.avdweb.nl/arduino/libraries/virtualdelay.html
10+
*/
11+
112
#ifndef VirtualDelay_H
213
#define VirtualDelay_H
314

library.properties

+9-9
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
1-
name=avdweb_VirtualDelay
2-
version=19.9.2017
3-
author=Albert van Dalen
4-
maintainer=Albert van Dalen <[email protected]>
5-
sentence=Allows using (multiple) delays without blocking code execution. Arduino Uno and Zero.
6-
paragraph=During the delay, the code execution is continued. We can use multiple delays simultaneously and independent of each other.
7-
category=Timing
8-
url=https://github.com/avandalen/VirtualDelay
9-
architectures=atmelavr, atmelsam
1+
name=avdweb_VirtualDelay
2+
version=1.0.3
3+
author=Albert van Dalen
4+
maintainer=Albert van Dalen <[email protected]>
5+
sentence=Allows using (multiple) delays without blocking code execution. Arduino Uno and Zero.
6+
paragraph=During the delay, the code execution is continued. We can use multiple delays simultaneously and independent of each other.
7+
category=Timing
8+
url=https://github.com/avandalen/VirtualDelay
9+
architectures=atmelavr, atmelsam
1010

0 commit comments

Comments
 (0)