From 530ab7adae2e6bc4505ed21e1ad34a759eadc630 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Karl=20S=C3=B6derby?= <35461661+karlsoderby@users.noreply.github.com> Date: Thu, 26 Oct 2023 11:09:20 +0200 Subject: [PATCH] swap g / b --- src/GigaDisplayRGB.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/GigaDisplayRGB.cpp b/src/GigaDisplayRGB.cpp index 2b78f97..aff8cd8 100644 --- a/src/GigaDisplayRGB.cpp +++ b/src/GigaDisplayRGB.cpp @@ -13,8 +13,8 @@ void GigaDisplayRGB::begin() void GigaDisplayRGB::on(uint8_t r, uint8_t g, uint8_t b) { writeByte(0x10, r); - writeByte(0x12, g); - writeByte(0x11, b); + writeByte(0x11, g); + writeByte(0x12, b); writeByte(0x2b, 0xc5); }