Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions src/devices/Ili934x/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,9 @@ const int pinID_DC = 25;
const int pinID_Reset = 24;
const int interruptPin = 39;

// This is required to initialize the graphics library
SkiaSharpAdapter.Register();

Chsc6440 touch = null;
using SpiDevice displaySPI = SpiDevice.Create(new SpiConnectionSettings(0, 0) { Mode = SpiMode.Mode3, DataBitLength = 8, ClockFrequency = 12_000_000 /* 12MHz */ });
using Ili9341 ili9341 = new(displaySPI, pinID_DC, pinID_Reset);
Expand Down