Compare commits

..

No commits in common. "d12e39d6fa44986fdcfeca4c8b2e2822586e7b65" and "816d0e53d0418240d059b359bbe5823ba8f2376e" have entirely different histories.

17 changed files with 12 additions and 25 deletions

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.8 KiB

After

Width:  |  Height:  |  Size: 945 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.2 KiB

After

Width:  |  Height:  |  Size: 1.6 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3 KiB

After

Width:  |  Height:  |  Size: 837 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.2 KiB

After

Width:  |  Height:  |  Size: 1.8 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.5 KiB

After

Width:  |  Height:  |  Size: 2.6 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.7 KiB

After

Width:  |  Height:  |  Size: 2.5 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.6 KiB

After

Width:  |  Height:  |  Size: 2.8 KiB

33
img.go
View file

@ -6,7 +6,6 @@ import (
"fmt" "fmt"
"github.com/Crocmagnon/display-epaper/epd" "github.com/Crocmagnon/display-epaper/epd"
"github.com/Crocmagnon/display-epaper/fete" "github.com/Crocmagnon/display-epaper/fete"
"github.com/Crocmagnon/display-epaper/home_assistant"
"github.com/Crocmagnon/display-epaper/quotes" "github.com/Crocmagnon/display-epaper/quotes"
"github.com/Crocmagnon/display-epaper/transports" "github.com/Crocmagnon/display-epaper/transports"
"github.com/Crocmagnon/display-epaper/weather" "github.com/Crocmagnon/display-epaper/weather"
@ -30,18 +29,23 @@ const (
rightX = 530 rightX = 530
) )
func getImg(ctx context.Context, nowFunc func() time.Time, transportsClient *transports.Client, feteClient *fete.Client, weatherClient *weather.Client, hassClient *home_assistant.Client) (*image.RGBA, error) { func getImg(
ctx context.Context,
nowFunc func() time.Time,
transportsClient *transports.Client,
feteClient *fete.Client,
weatherClient *weather.Client,
) (*image.RGBA, error) {
var ( var (
bus *transports.Passages bus *transports.Passages
tram *transports.Passages tram *transports.Passages
velovRoc *transports.Station velovRoc *transports.Station
fetes *fete.Fete fetes *fete.Fete
wthr *weather.Prevision wthr *weather.Prevision
msg string
) )
wg := &sync.WaitGroup{} wg := &sync.WaitGroup{}
wg.Add(6) wg.Add(5)
go func() { go func() {
defer wg.Done() defer wg.Done()
@ -108,19 +112,8 @@ func getImg(ctx context.Context, nowFunc func() time.Time, transportsClient *tra
log.Println("error getting weather:", err) log.Println("error getting weather:", err)
} }
}() }()
go func() {
defer wg.Done()
ctx, cancel := context.WithTimeout(ctx, 10*time.Second) quote := quotes.GetQuote(nowFunc())
defer cancel()
var err error
msg, err = hassClient.GetState(ctx, "input_text.e_paper_message")
if err != nil {
log.Println("error getting hass message:", err)
}
}()
img := newWhite() img := newWhite()
@ -132,22 +125,18 @@ func getImg(ctx context.Context, nowFunc func() time.Time, transportsClient *tra
wg.Wait() wg.Wait()
if msg == "" {
msg = quotes.GetQuote(nowFunc())
}
drawTCL(gc, bus, 55) drawTCL(gc, bus, 55)
drawTCL(gc, tram, 190) drawTCL(gc, tram, 190)
drawVelov(gc, velovRoc, 350) drawVelov(gc, velovRoc, 350)
drawDate(gc, nowFunc()) drawDate(gc, nowFunc())
drawFete(gc, fetes) drawFete(gc, fetes)
drawWeather(gc, wthr) drawWeather(gc, wthr)
drawMsg(gc, msg) drawQuote(gc, quote)
return img, nil return img, nil
} }
func drawMsg(gc *draw2dimg.GraphicContext, quote string) { func drawQuote(gc *draw2dimg.GraphicContext, quote string) {
text(gc, quote, 15, leftX, 450) text(gc, quote, 15, leftX, 450)
} }

View file

@ -18,7 +18,7 @@ func run(
transportsClient *transports.Client, transportsClient *transports.Client,
feteClient *fete.Client, feteClient *fete.Client,
weatherClient *weather.Client, weatherClient *weather.Client,
hassClient *home_assistant.Client, _ *home_assistant.Client,
) error { ) error {
img, err := getImg( img, err := getImg(
ctx, ctx,
@ -32,7 +32,6 @@ func run(
transportsClient, transportsClient,
feteClient, feteClient,
weatherClient, weatherClient,
hassClient,
) )
if err != nil { if err != nil {
log.Fatal(err) log.Fatal(err)

View file

@ -87,7 +87,6 @@ func loop(
transportsClient, transportsClient,
feteClient, feteClient,
weatherClient, weatherClient,
hassClient,
) )
if err != nil { if err != nil {
return nil, fmt.Errorf("getting black: %w", err) return nil, fmt.Errorf("getting black: %w", err)