File tree Expand file tree Collapse file tree 8 files changed +21
-7
lines changed
Expand file tree Collapse file tree 8 files changed +21
-7
lines changed Original file line number Diff line number Diff line change @@ -22,9 +22,9 @@ void setup()
2222 test1 ();
2323 test2 ();
2424 test3 ();
25-
2625}
2726
27+
2828void loop ()
2929{
3030}
@@ -101,6 +101,7 @@ void test2()
101101 delay (10 );
102102}
103103
104+
104105void test3 ()
105106{
106107 Serial.println (" \n TEST 100x ADD 10000 RANDOM ANGLES" );
@@ -120,4 +121,5 @@ void test3()
120121 delay (10 );
121122}
122123
124+
123125// -- END OF FILE --
Original file line number Diff line number Diff line change 1+ compile :
2+ # Choosing to run compilation tests on 2 different Arduino platforms
3+ platforms :
4+ - uno
5+ - leonardo
6+ # - due
7+ # - zero
File renamed without changes.
Original file line number Diff line number Diff line change 1515 "type" : " git" ,
1616 "url" : " https://github.com/RobTillaart/runningAngle.git"
1717 },
18- "version" :" 0.1.1" ,
18+ "version" : " 0.1.2" ,
19+ "license" : " MIT" ,
1920 "frameworks" : " arduino" ,
2021 "platforms" : " *"
2122}
Original file line number Diff line number Diff line change 11name =runningAngle
2- version =0.1.1
2+ version =0.1.2
33author =Rob Tillaart <
[email protected] >
44maintainer =Rob Tillaart <
[email protected] >
55sentence =Library to average angles by means of low pass filtering with wrapping.
Original file line number Diff line number Diff line change 11//
22// FILE: runningAngle.cpp
33// AUTHOR: Rob Tillaart
4- // VERSION: 0.1.1
4+ // VERSION: 0.1.2
55// PURPOSE: Library to average angles by means of low pass filtering with wrapping.
66// URL: https://github.com/RobTillaart/runningAngle
77// RELATED: https://github.com/RobTillaart/AverageAngle
88//
99
1010// HISTORY:
11- // 0.1.0 2020-10-28 initial version (based on code of Edgar Bonet)
11+ // 0.1.0 2020-10-28 initial version (based on code of Edgar Bonet)
1212// 0.1.1 2021-01-07 arduino-ci + unit test
13+ // 0.1.2 2021-05-27 Arduino-lint
1314
1415
1516#include " runningAngle.h"
@@ -57,4 +58,5 @@ float runningAngle::wrap(float angle)
5758 return angle;
5859}
5960
61+
6062// -- END OF FILE --
Original file line number Diff line number Diff line change 22//
33// FILE: runningAngle.h
44// AUTHOR: Rob Tillaart
5- // VERSION: 0.1.1
5+ // VERSION: 0.1.2
66// PURPOSE: Library to average angles by means of low pass filtering with wrapping.
77
88
1111#include " math.h"
1212
1313
14- #define RUNNING_ANGLE_LIB_VERSION (F(" 0.1.1 " ))
14+ #define RUNNING_ANGLE_LIB_VERSION (F(" 0.1.2 " ))
1515
1616
1717class runningAngle
@@ -40,4 +40,5 @@ class runningAngle
4040 bool _reset;
4141};
4242
43+
4344// -- END OF FILE --
Original file line number Diff line number Diff line change @@ -38,6 +38,7 @@ unittest_setup()
3838{
3939}
4040
41+
4142unittest_teardown ()
4243{
4344}
You can’t perform that action at this time.
0 commit comments