Skip to content

Commit ce03beb

Browse files
committed
release: prepare for release v0.16.0
Signed-off-by: deadprogram <[email protected]>
1 parent dfd652c commit ce03beb

File tree

2 files changed

+44
-1
lines changed

2 files changed

+44
-1
lines changed

CHANGELOG.md

Lines changed: 43 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,46 @@
1+
0.16.0
2+
---
3+
- **new devices**
4+
- aht20: add device
5+
- ina260: add new i2c device
6+
- keypad: add 4x4 keypad driver (#226)
7+
- max7219: add driver support
8+
- mcp2515: add support for mcp2515 CAN device
9+
- p1am: support the P1AM-100 hardware watchdog
10+
- pcf8563: add support for pcf8563 real time clock
11+
- servo: add driver using PWM
12+
- tm1637: add support for tm1637 7-segment LED
13+
- tone: add package for producing tones using the PWM interface
14+
- **enhancements**
15+
- pwm: update drivers with PWM to use new interface
16+
- wifinina: Make TLS work over WiFiNINA Verified on Arduino Nano33 IoT and nina fw v1.4.5
17+
- ssd1306: Enable reset screen for SSD1306 via I2C
18+
- st7789: add scrolling functions to match st7735
19+
- **bugfixes**
20+
- wifinina:
21+
- fix getMACAddress and getTime
22+
- fix println + cleanup
23+
- remove debug flag and remove unnecessary padding call
24+
- fix padding and implement missing functions
25+
- flash: fix EraseBlocks method which is erasing sectors instead
26+
- **core**
27+
- all: use interfaces for UART objects
28+
- all: do not take the pointer of an I2C object
29+
- adc: update drivers with ADC to use new config struct
30+
- **testing**
31+
- tester:
32+
- add a mock for command-oriented i2c devices
33+
- add 16-bit register mock device
34+
35+
- **docs**
36+
- ssd1306: example of ssd1306 with 128x64 display over I2C
37+
- wifinina:
38+
- add information about Adafruit boards with ESP32 wifi coprocessors, and modify examples to remove code that was both not being used, and also prevented many Adafruit boards from being able to be targeted by the examples
39+
- update docs to simplify the nina-fw update process
40+
- example that connects to AP and prints ip addresses, time and mac
41+
- p1am: documentation and example program
42+
- add missing new drivers added since last release
43+
144
0.15.0
245
---
346
- **new devices**

version.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@ package drivers
22

33
// Version returns a user-readable string showing the version of the drivers package for support purposes.
44
// Update this value before release of new version of software.
5-
const Version = "0.15.1"
5+
const Version = "0.16.0"

0 commit comments

Comments
 (0)