Skip to content

Commit 1bf1a11

Browse files
committed
all: prepare release v0.28.0
Signed-off-by: deadprogram <[email protected]>
1 parent 848f5de commit 1bf1a11

File tree

3 files changed

+44
-2
lines changed

3 files changed

+44
-2
lines changed

CHANGELOG.md

+42
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,45 @@
1+
0.28.0
2+
---
3+
- **new devices**
4+
- **epd2in66b**
5+
- Waveshare 2.66inch E-Paper Display Module (B) for Raspberry Pi Pico (#673)
6+
- **mcp9808**
7+
- Add driver for MCP9808 i2c temperature sensor (#676)
8+
9+
- **enhancements**
10+
- **encoders**
11+
- add atsamd21, atsamd51, atsame5x
12+
- **pixel**
13+
- add support for Monochrome types such as the SSD1306 display
14+
- **rtl8720dn**
15+
- implement ConnectModeAP
16+
- **servo**
17+
- add function SetAngle() to simplify API for most common use case
18+
- **ssd1306**
19+
- add DrawBitmap() function to complete Displayer interface
20+
- add rotation functions for Displayer interface
21+
- add Sleep() function for Displayer interface
22+
- **uc8151**
23+
- improvements to speed and also add flicker-free mode based on @antirez code example
24+
- update to support all functions needed by tinygl and board package Displayer interface
25+
- **wifinina**
26+
- implement ConnectModeAP
27+
28+
- **bugfixes**
29+
- **ft6336**
30+
- ignore bogus touch events
31+
- **pixel**
32+
- fix Image[Monochrome].Set for larger images
33+
- **uc8151**
34+
- correct DrawBitmap() also refactor SendCommand() and SendData() for clarity
35+
- **ws2812**
36+
- Fix typo and move initialization of neo to init()
37+
38+
- **examples**
39+
- **ws2812**
40+
- Simplify examples/ws2812
41+
42+
143
0.27.0
244
---
345
- **core**

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
[![PkgGoDev](https://pkg.go.dev/badge/tinygo.org/x/drivers)](https://pkg.go.dev/tinygo.org/x/drivers) [![Build](https://github.com/tinygo-org/drivers/actions/workflows/build.yml/badge.svg?branch=dev)](https://github.com/tinygo-org/drivers/actions/workflows/build.yml)
44

55

6-
This package provides a collection of 102 different hardware drivers for devices such as sensors and displays that can be used together with [TinyGo](https://tinygo.org).
6+
This package provides a collection of over 100 different hardware drivers for devices such as sensors, displays, wireless adaptors, and actuators, that can be used together with [TinyGo](https://tinygo.org).
77

88
For the complete list, please see:
99
https://tinygo.org/docs/reference/devices/

version.go

+1-1
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.27.0"
5+
const Version = "0.28.0"

0 commit comments

Comments
 (0)