Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/arduino-lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ jobs:
runs-on: ubuntu-latest
timeout-minutes: 5
steps:
- uses: actions/checkout@v4
- uses: arduino/arduino-lint-action@v1
- uses: actions/checkout@v6
- uses: arduino/arduino-lint-action@v2
with:
library-manager: update
compliance: strict
3 changes: 1 addition & 2 deletions .github/workflows/arduino_test_runner.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,8 @@ jobs:
runTest:
runs-on: ubuntu-latest
timeout-minutes: 20

steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6
- uses: ruby/setup-ruby@v1
with:
ruby-version: 2.6
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/jsoncheck.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,15 @@ on:
paths:
- '**.json'
pull_request:
paths:
- '**.json'

jobs:
test:
runs-on: ubuntu-latest
timeout-minutes: 5
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6
- name: json-syntax-check
uses: limitusus/json-syntax-check@v2
with:
Expand Down
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,10 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/)
and this project adheres to [Semantic Versioning](http://semver.org/).


## [0.6.2] - 2026-01-23
- update GitHud actions
- minor edits

## [0.6.1] - 2025-05-08
- fix #34, Sync PCA9634 / 32
- rename setLedDriverMode() => setLedDriverModeAll()
Expand Down
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
MIT License

Copyright (c) 2016-2025 Rob Tillaart
Copyright (c) 2016-2026 Rob Tillaart

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
2 changes: 1 addition & 1 deletion PCA9635.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
// FILE: PCA9635.cpp
// AUTHOR: Rob Tillaart
// DATE: 23-apr-2016
// VERSION: 0.6.1
// VERSION: 0.6.2
// PURPOSE: Arduino library for PCA9635 I2C LED driver, 16 channel PWM, 8 bit
// URL: https://github.com/RobTillaart/PCA9635

Expand Down
6 changes: 3 additions & 3 deletions PCA9635.h
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
// FILE: PCA9635.h
// AUTHOR: Rob Tillaart
// DATE: 23-apr-2016
// VERSION: 0.6.1
// VERSION: 0.6.2
// PURPOSE: Arduino library for PCA9635 I2C LED driver, 16 channel PWM, 8 bit
// URL: https://github.com/RobTillaart/PCA9635

Expand All @@ -12,7 +12,7 @@
#include "Wire.h"


#define PCA9635_LIB_VERSION (F("0.6.1"))
#define PCA9635_LIB_VERSION (F("0.6.2"))


// mode codes
Expand Down Expand Up @@ -144,7 +144,7 @@ class PCA9635
uint8_t writeN(uint8_t channel, uint8_t * arr, uint8_t count);

// array at least 16 elements
uint8_t writeAll(uint8_t * arr);
uint8_t writeAll(uint8_t * arr);
uint8_t allOff();

// generic worker, write N consecutive PWM registers without Stop command
Expand Down
1 change: 1 addition & 0 deletions examples/PCA9635_OE_control/PCA9635_OE_control.ino
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ PCA9635 ledArray(0x20);
void setup()
{
Serial.begin(115200);
Serial.println();
Serial.println(__FILE__);
Serial.print("PCA9635_LIB_VERSION: ");
Serial.println(PCA9635_LIB_VERSION);
Expand Down
1 change: 1 addition & 0 deletions examples/PCA9635_performance/PCA9635_performance.ino
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ uint32_t start, stop;
void setup()
{
Serial.begin(115200);
Serial.println();
Serial.println(__FILE__);
Serial.print("PCA9635_LIB_VERSION: ");
Serial.println(PCA9635_LIB_VERSION);
Expand Down
3 changes: 2 additions & 1 deletion examples/PCA9635_shift_rotate/PCA9635_shift_rotate.ino
Original file line number Diff line number Diff line change
Expand Up @@ -11,13 +11,14 @@
PCA9635 ledArray(0x20);

uint8_t arr[16]; // working array
uint8_t channels = 16;
uint8_t channels = 16;



void setup()
{
Serial.begin(115200);
Serial.println();
Serial.println(__FILE__);
Serial.print("PCA9635_LIB_VERSION: ");
Serial.println(PCA9635_LIB_VERSION);
Expand Down
1 change: 1 addition & 0 deletions examples/PCA9635_test01/PCA9635_test01.ino
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ PCA9635 ledArray(0x20);
void setup()
{
Serial.begin(115200);
Serial.println();
Serial.println(__FILE__);
Serial.print("PCA9635_LIB_VERSION: ");
Serial.println(PCA9635_LIB_VERSION);
Expand Down
1 change: 1 addition & 0 deletions examples/PCA9635_test_multiple/PCA9635_test_multiple.ino
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ PCA9635 ledArray2(0x21);
void setup()
{
Serial.begin(115200);
Serial.println();
Serial.println(__FILE__);
Serial.print("PCA9635_LIB_VERSION: ");
Serial.println(PCA9635_LIB_VERSION);
Expand Down
2 changes: 1 addition & 1 deletion library.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
"type": "git",
"url": "https://github.com/RobTillaart/PCA9635.git"
},
"version": "0.6.1",
"version": "0.6.2",
"license": "MIT",
"frameworks": "*",
"platforms": "*",
Expand Down
2 changes: 1 addition & 1 deletion library.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name=PCA9635
version=0.6.1
version=0.6.2
author=Rob Tillaart <rob.tillaart@gmail.com>
maintainer=Rob Tillaart <rob.tillaart@gmail.com>
sentence=Arduino library for PCA9635 I2C LED driver, 16 channel PWM, 8 bit.
Expand Down