Compare commits

...

2 Commits

Author SHA1 Message Date
Daniel Esteban 5eac8e38af Revert "ds3231: fix the description in the example"
This reverts commit 00992756eb.
2023-10-06 08:45:23 +02:00
Daniel Esteban 08580afbfc Revert "at24cx: fixed the description of the device struct"
This reverts commit 36a12dd7a2.
2023-10-06 08:45:23 +02:00
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -11,7 +11,7 @@ import (
"tinygo.org/x/drivers"
)
// Device wraps an I2C connection to an AT24CX device.
// Device wraps an I2C connection to a DS3231 device.
type Device struct {
bus drivers.I2C
Address uint16
+1 -1
View File
@@ -1,4 +1,4 @@
// Connects to an DS3231 I2C Real Time Clock (RTC).
// Connects to an MAG3110 I2C magnetometer.
package main
import (