Loom_OLED class

OLED logging platform module.

Base classes

class LoomLogPlat
Abstract base of logging platforms.

Public types

enum Version { FEATHERWING, BREAKOUT }
Different forms of the OLED display.
enum Format { FOUR, EIGHT, SCROLL }
Different formats to display information in.
enum FreezeType { DISABLE, DATA, SCROLL }
Differnt freeze behaviors.

Protected variables

Adafruit_SSD1306 display
Underlying OLED controller.
Version version
What type the OLED is (FeatherWing or breakout)
byte reset_pin
The reset pin (only applies to breakout version)
Format display_format
How to display the data on OLED.
uint scroll_duration
The duration to complete a full cycle through a bundle of data (milliseconds)(non-blocking)
byte freeze_pin
Which pin to check if display should freeze.
FreezeType freeze_behavior
What 'freezing' behavior should be followed.

CONSTRUCTORS / DESTRUCTOR

Loom_OLED(LoomManager* manager, const bool enable_rate_filter = true, const uint16_t min_filter_delay = 300, const Version type = Version::FEATHERWING, const byte reset_pin = A2, const Format display_format = Format::SCROLL, const uint16_t scroll_duration = 6000, const byte freeze_pin = 10, const FreezeType freeze_behavior = FreezeType::SCROLL)
OLED module constructor.
Loom_OLED(LoomManager* manager, JsonArrayConst p)
Constructor that takes Json Array, extracts args and delegates to regular constructor.
~Loom_OLED() defaulted
Destructor.

OPERATION

auto log(JsonObject json) -> bool override
Log a Json object.

GETTERS

auto get_display_format() const -> Format
Get the current OLED display organization.
auto get_scroll_duration() const -> uint
Get the current scroll duration.
auto get_freeze_pin() const -> byte
Get the digital pin use to freeze the display.
auto get_freeze_behavior() const -> FreezeType
Get the current freeze behavior.

SETTERS

void set_display_format(const Format format)
Set the OLED display organization.
void set_scroll_duration(const uint duration)
Set the duration of a complete scroll.
void set_freeze_pin(const byte pin)
Set the digital pin to use to freeze the display.
void set_freeze_behavior(const FreezeType behavior)
Set the freezing behavior of the display.

MISCELLANEOUS

unsigned long previous_time
Last display update time.
static auto enum_oled_version_string(const Version v) -> const char*
Get c-string of name associated with OLED::Version enum.
static auto enum_oled_format_string(const Format f) -> const char*
Get c-string of name associated with OLED:Format enum.
static auto enum_oled_freeze_string(const FreezeType f) -> const char*
Get c-string of name associated with OLED freeze behavior enum.

Enum documentation

enum Loom_OLED::Version

Different forms of the OLED display.

Enumerators
FEATHERWING

FeatherWing OLED.

BREAKOUT

Breakout board.

enum Loom_OLED::Format

Different formats to display information in.

Enumerators
FOUR

4 Key values

EIGHT

8 Key values

SCROLL

Scrolling.

enum Loom_OLED::FreezeType

Differnt freeze behaviors.

Enumerators
DISABLE

Freeze disabled.

DATA

Screen freezes.

SCROLL

Scroll freezes, data updates.

Function documentation

Loom_OLED::Loom_OLED(LoomManager* manager, const bool enable_rate_filter = true, const uint16_t min_filter_delay = 300, const Version type = Version::FEATHERWING, const byte reset_pin = A2, const Format display_format = Format::SCROLL, const uint16_t scroll_duration = 6000, const byte freeze_pin = 10, const FreezeType freeze_behavior = FreezeType::SCROLL)

OLED module constructor.

Parameters
manager
enable_rate_filter in Bool | <true> | {true, false} | Whether or not to impose maximum update rate
min_filter_delay in Int | <300> | [50-5000] | Minimum update delay, if enable_rate_filter enabled
type in Set(Version) | <0> | {0("Featherwing"), 1("Breakout")} | Which version of the OLED is being used
reset_pin in Set(Int) | <14> | {5, 6, 9, 10, 11, 12, 13, 14("A0"), 15("A1"), 16("A2"), 17("A3"), 18("A4"), 19("A5")} | Which pin should be used for reseting. Only applies to breakout version
display_format in Set(Format) | <A0> | {0("4 pairs"), 1("8 pairs"), 2("Scrolling")} | How to display the key value pairs of a bundle
scroll_duration in Int | <6000> | [500-30000] | The time (ms) to complete full scroll cycle if display_format is SCROLL
freeze_pin in Set(Int) | <10> | {5, 6, 9, 10, 11, 12, 13, 14("A0"), 15("A1"), 16("A2"), 17("A3"), 18("A4"), 19("A5")} | Which pin should be used to pause the display
freeze_behavior in Set(FreezeType) | <2> | {O("Disable"), 1("Pause Data"), 2("Pause Data and Scroll")} | How freezing the display should behave

Loom_OLED::Loom_OLED(LoomManager* manager, JsonArrayConst p)

Constructor that takes Json Array, extracts args and delegates to regular constructor.

Parameters
manager
in The array of constuctor args to expand

bool Loom_OLED::log(JsonObject json) override

Log a Json object.

Parameters
json in Json Object to log

Format Loom_OLED::get_display_format() const

Get the current OLED display organization.

Returns The current Format being used

uint Loom_OLED::get_scroll_duration() const

Get the current scroll duration.

Returns The current scroll duration

byte Loom_OLED::get_freeze_pin() const

Get the digital pin use to freeze the display.

Returns The freeze pin

FreezeType Loom_OLED::get_freeze_behavior() const

Get the current freeze behavior.

Returns The current freeze behavior

void Loom_OLED::set_display_format(const Format format)

Set the OLED display organization.

Parameters
format in The Format to set to

void Loom_OLED::set_scroll_duration(const uint duration)

Set the duration of a complete scroll.

Parameters
duration in The duration to set to

void Loom_OLED::set_freeze_pin(const byte pin)

Set the digital pin to use to freeze the display.

Parameters
pin in The pin to use

void Loom_OLED::set_freeze_behavior(const FreezeType behavior)

Set the freezing behavior of the display.

Parameters
behavior in Which FreezeType type to use

static const char* Loom_OLED::enum_oled_version_string(const Version v)

Get c-string of name associated with OLED::Version enum.

Parameters
in OLED::Version value to get string of
Returns C-string of OLED version

static const char* Loom_OLED::enum_oled_format_string(const Format f)

Get c-string of name associated with OLED:Format enum.

Parameters
in OLED::Format value to get string of
Returns C-string of OLED format

static const char* Loom_OLED::enum_oled_freeze_string(const FreezeType f)

Get c-string of name associated with OLED freeze behavior enum.

Parameters
in FreezeType to get string of
Returns C-string of OLED freeze behavior

Variable documentation

unsigned long Loom_OLED::previous_time

Last display update time.

Used to manage scrolling