Skip to content

Commit f8aa8d8

Browse files
authored
Merge pull request #73 from adafruit/actions
Actions
2 parents 52c2844 + e610e9c commit f8aa8d8

File tree

3 files changed

+34
-67
lines changed

3 files changed

+34
-67
lines changed

.github/workflows/githubci.yml

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
name: Arduino Library CI
2+
3+
on: [pull_request, push, repository_dispatch]
4+
5+
jobs:
6+
build:
7+
runs-on: ubuntu-latest
8+
9+
steps:
10+
- uses: actions/setup-python@v1
11+
with:
12+
python-version: '3.x'
13+
- uses: actions/checkout@v2
14+
- uses: actions/checkout@v2
15+
with:
16+
repository: adafruit/ci-arduino
17+
path: ci
18+
19+
- name: pre-install
20+
run: bash ci/actions_install.sh
21+
22+
- name: test platforms
23+
run: python3 ci/build_platform.py main_platforms
24+
25+
- name: clang
26+
run: python3 ci/run-clang-format.py -e "ci/*" -e "bin/*" -r .
27+
28+
- name: doxygen
29+
env:
30+
GH_REPO_TOKEN: ${{ secrets.GH_REPO_TOKEN }}
31+
PRETTYNAME : "Adafruit PCA9685 PWM Library"
32+
run: bash ci/doxy_gen_and_deploy.sh

.travis.yml

Lines changed: 0 additions & 34 deletions
This file was deleted.

README.md

Lines changed: 2 additions & 33 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
1-
# Adafruit PCA9685 PWM Servo Driver Library [![Build Status](https://travis-ci.com/adafruit/Adafruit-PWM-Servo-Driver-Library.svg?branch=master)](https://travis-ci.com/adafruit/Adafruit-PWM-Servo-Driver-Library)
1+
# Adafruit PCA9685 PWM Servo Driver Library ![Build Status](https://github.com/adafruit/Adafruit-PWM-Servo-Driver-Library/workflows/Arduino%20Library%20CI/badge.svg)
2+
23

34
This is a library for our Adafruit 16-channel PWM & Servo driver, shield or FeatherWing
45

@@ -16,35 +17,3 @@ Adafruit invests time and resources providing this open source code, please supp
1617
Written by Limor Fried/Ladyada for Adafruit Industries. BSD license, check license.txt for more information.
1718

1819
All text above must be included in any redistribution
19-
20-
<!-- START COMPATIBILITY TABLE -->
21-
22-
## Compatibility
23-
24-
MCU | Tested Works | Doesn't Work | Not Tested | Notes
25-
------------------ | :----------: | :----------: | :---------: | -----
26-
Atmega328 @ 16MHz | X | | |
27-
Atmega328 @ 12MHz | X | | |
28-
Atmega32u4 @ 16MHz | X | | |
29-
Atmega32u4 @ 8MHz | X | | |
30-
ESP8266 | X | | |
31-
Atmega2560 @ 16MHz | X | | |
32-
ATSAM3X8E | X | | | Use SDA1/SCL1
33-
ATSAM21D | X | | |
34-
ATtiny85 @ 16MHz | X | | |
35-
ATtiny85 @ 8MHz | X | | |
36-
Intel Curie @ 32MHz | | | X |
37-
STM32F2 | | | X |
38-
39-
* ATmega328 @ 16MHz : Arduino UNO, Adafruit Pro Trinket 5V, Adafruit Metro 328, Adafruit Metro Mini
40-
* ATmega328 @ 12MHz : Adafruit Pro Trinket 3V
41-
* ATmega32u4 @ 16MHz : Arduino Leonardo, Arduino Micro, Arduino Yun, Teensy 2.0
42-
* ATmega32u4 @ 8MHz : Adafruit Flora, Bluefruit Micro
43-
* ESP8266 : Adafruit Huzzah
44-
* ATmega2560 @ 16MHz : Arduino Mega
45-
* ATSAM3X8E : Arduino Due
46-
* ATSAM21D : Arduino Zero, M0 Pro
47-
* ATtiny85 @ 16MHz : Adafruit Trinket 5V
48-
* ATtiny85 @ 8MHz : Adafruit Gemma, Arduino Gemma, Adafruit Trinket 3V
49-
50-
<!-- END COMPATIBILITY TABLE -->

0 commit comments

Comments
 (0)