Skip to content

Commit fd21e6a

Browse files
committed
all: update for drivers release 0.26.0
Signed-off-by: deadprogram <[email protected]>
1 parent 485ed70 commit fd21e6a

File tree

3 files changed

+42
-7
lines changed

3 files changed

+42
-7
lines changed

CHANGELOG.md

+37
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,40 @@
1+
0.26.0
2+
---
3+
- **core**
4+
- i2c iface refactor: Resolve #559
5+
- fix uses of legacy i2c WriteRegister calls
6+
- add correct Tx implementation for mock I2C interfaces
7+
- bump golang.org/x/net version
8+
9+
- **new devices**
10+
- **bma42x**
11+
- add new BMA421/BMA425 driver
12+
- **ndir**
13+
- add Sandbox Electronics NDIR CO2 sensor driver (#580)
14+
- **mpu9150**
15+
- implement driver for Mpu9150 (#596)
16+
- **sht4x**
17+
- implement driver for sht4x (#597)
18+
- **pcf8523**
19+
- implement driver for pcf8523 (#599)
20+
21+
- **enhancements**
22+
- **ssd1306**
23+
- improve bus error handling
24+
25+
- **bugfixes**
26+
- **st7789**
27+
- fix scrolling when rotated by 180°
28+
- **st7789**
29+
- fix incorrect Rotation configuration
30+
- fix SetScrollArea
31+
- **ili9341**
32+
- fix SetScrollArea
33+
34+
- **build**
35+
- use latest tag of tinygo-dev container for running tests
36+
37+
138
0.25.0
239
---
340

README.md

+4-6
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,10 @@
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 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 101 different hardware drivers for devices such as sensors and displays that can be used together with [TinyGo](https://tinygo.org).
7+
8+
For the complete list, please see:
9+
https://tinygo.org/docs/reference/devices/
710

811
## Installing
912

@@ -50,11 +53,6 @@ func main() {
5053
}
5154
```
5255

53-
## Supported devices
54-
55-
There are currently 96 devices supported. For the complete list, please see:
56-
https://tinygo.org/docs/reference/devices/
57-
5856
## Contributing
5957

6058
Your contributions are welcome!

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.25.0"
5+
const Version = "0.26.0"

0 commit comments

Comments
 (0)