all: switch to using custom domain for all drivers

Signed-off-by: Ron Evans <ron@hybridgroup.com>
This commit is contained in:
Ron Evans
2019-05-27 17:09:32 +02:00
committed by Ayke
parent 7757122598
commit c09f0a8075
62 changed files with 86 additions and 65 deletions
+3 -3
View File
@@ -7,7 +7,7 @@ import (
"time"
"github.com/tinygo-org/drivers/waveshare-epd/epd2in13"
"tinygo.org/x/drivers/waveshare-epd/epd2in13"
)
var display epd2in13.Device
@@ -60,9 +60,9 @@ func main() {
// There are two memory areas in the display, once the display is refreshed, memory areas are auto-toggled.
// DisplayRect needs to be called twice
display.DisplayRect(40,83,48,83)
display.DisplayRect(40, 83, 48, 83)
display.WaitUntilIdle()
display.DisplayRect(40,83,48,83)
display.DisplayRect(40, 83, 48, 83)
display.WaitUntilIdle()
println("You could remove power now")
+1 -1
View File
@@ -5,7 +5,7 @@ import (
"image/color"
"github.com/tinygo-org/drivers/waveshare-epd/epd2in13x"
"tinygo.org/x/drivers/waveshare-epd/epd2in13x"
)
var display epd2in13x.Device