You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Brightness::custom is not exposed as pub, is this by design?
This was done because Brightness::custom couldn't be made const previously and I didn't want to expose the option of setting precharge phase 2 values that are above 15.
Can the VCOMH Deselect Level be exposed?
The SSD1306 datasheet only lists 0x00, 0x20 and 0x30 which doesn't seem to match the values used in this crate.
Probably? The observation is good, and I don't know where 0b100 comes from as the source repository no longer exists.
ssd1306
in use (if applicable): UnknownDescription of the problem/feature request/other
Brightness::custom
is not exposed aspub
, is this by design? I would like to be able to set custom values.0x01
or0x02
in this crate. However, from the SSD1306 datasheet I can find (https://cdn-shop.adafruit.com/datasheets/SSD1306.pdf), the value consists of two nibbles and it is stated that "clocks 0 is invalid entry", which would make both0x01
and0x02
invalid. The display datasheet I have (https://files.pine64.org/doc/datasheet/pinecil/1810010328_UG-Univision-Semicon-UG-9616TSWCG02_C88335.pdf) uses0xF1
as an example.0x00
,0x20
and0x30
which doesn't seem to match the values used in this crate.The text was updated successfully, but these errors were encountered: