File tree 3 files changed +50
-2
lines changed
3 files changed +50
-2
lines changed Original file line number Diff line number Diff line change @@ -16,4 +16,5 @@ platformio.ini
16
16
# Our handy .gitignore for automation ease
17
17
Doxyfile *
18
18
doxygen_sqlite3.db
19
- html
19
+ html
20
+ latex
Original file line number Diff line number Diff line change
1
+ language : c
2
+ sudo : false
3
+ cache :
4
+ directories :
5
+ - ~/arduino_ide
6
+ - ~/.arduino15/packages/
7
+ git :
8
+ depth : false
9
+ quiet : true
10
+ addons :
11
+ apt :
12
+ sources :
13
+ - llvm-toolchain-trusty-5.0
14
+ - key_url : ' http://apt.llvm.org/llvm-snapshot.gpg.key'
15
+ packages :
16
+ - python3-pip
17
+ - python3-wheel
18
+ - clang-format-5.0
19
+ env :
20
+ global :
21
+ # - ARDUINO_IDE_VERSION="1.8.10"
22
+ - PRETTYNAME="Testing Arduino IO"
23
+ # Optional, will default to "$TRAVIS_BUILD_DIR/Doxyfile"
24
+ # - DOXYFILE: $TRAVIS_BUILD_DIR/Doxyfile
25
+
26
+ before_install :
27
+ - source <(curl -SLs https://raw.githubusercontent.com/adafruit/travis-ci-arduino/master/install.sh)
28
+ - curl -SLs https://raw.githubusercontent.com/adafruit/travis-ci-arduino/master/run-clang-format.py > run-clang-format.py
29
+
30
+ install :
31
+ - arduino --install-library "WiFiNINA"
32
+
33
+ script :
34
+ - python run-clang-format.py -r .
35
+ - build_main_platforms
36
+
37
+ # Generate and deploy documentation
38
+ after_success :
39
+ - source <(curl -SLs https://raw.githubusercontent.com/adafruit/travis-ci-arduino/master/library_check.sh)
40
+ # - source <(curl -SLs https://raw.githubusercontent.com/adafruit/travis-ci-arduino/master/doxy_gen_and_deploy.sh)
Original file line number Diff line number Diff line change @@ -98,7 +98,14 @@ class AdafruitIO_AIRLIFT : public AdafruitIO {
98
98
/* *************************************************************************/
99
99
/* !
100
100
@brief Allows setting of the AirLift RGB led from the
101
- Adafruit IO AirLift Class
101
+ Adafruit IO AirLift Class.
102
+ @param r
103
+ Red value
104
+ @param g
105
+ Green value
106
+ @param b
107
+ Blue value
108
+
102
109
*/
103
110
/* *************************************************************************/
104
111
void setLEDs ( int r, int g, int b) {
You can’t perform that action at this time.
0 commit comments