Struct sensehat_screen::PixelColor [] [src]

pub struct PixelColor {
    pub red: u8,
    pub green: u8,
    pub blue: u8,
}

A single LED pixel color, with RGB565 rendering.

Fields

Methods

impl PixelColor
[src]

BLACK: PixelColor = PixelColor{red: 0, green: 0, blue: 0,}

RED: PixelColor = PixelColor{red: 255, green: 0, blue: 0,}

BLUE: PixelColor = PixelColor{red: 0, green: 0, blue: 255,}

GREEN: PixelColor = PixelColor{red: 0, green: 255, blue: 0,}

WHITE: PixelColor = PixelColor{red: 255, green: 255, blue: 255,}

YELLOW: PixelColor = PixelColor{red: 255, green: 255, blue: 0,}

CYAN: PixelColor = PixelColor{red: 0, green: 255, blue: 255,}

MAGENTA: PixelColor = PixelColor{red: 255, green: 0, blue: 255,}

[src]

Create a new LED pixel color.

[src]

Create a new LED pixel color from a pair of RGB565-encoded bytes.

[src]

Encodes the current LED pixel color into a pair of RGB565-encoded bytes.

[src]

Sets the brightness of this colour.

The scale value should be between 0 and 1. Values outside this range are clamped.

Trait Implementations

impl Copy for PixelColor
[src]

impl Clone for PixelColor
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl Debug for PixelColor
[src]

[src]

Formats the value using the given formatter. Read more

impl Default for PixelColor
[src]

[src]

Returns the "default value" for a type. Read more

impl PartialEq for PixelColor
[src]

[src]

This method tests for self and other values to be equal, and is used by ==. Read more

[src]

This method tests for !=.

Auto Trait Implementations

impl Send for PixelColor

impl Sync for PixelColor