Class: LWS::DigitalSignage::Display

Inherits:
Generic::Model show all
Defined in:
lib/lws/apps/digital_signage.rb

Overview

The display class

Defined Under Namespace

Classes: Input, Resolution

Instance Attribute Summary collapse

Attributes inherited from Generic::Model

#created_at, #id, #updated_at, #url, #url_html

Method Summary

Methods inherited from Generic::Model

#deep_dup, #dig, #reload, #rollback, #save

Instance Attribute Details

#aspect_ratioString?

Returns the aspect ratio of the display.

Returns:

  • (String, nil)

    the aspect ratio of the display



356
# File 'lib/lws/apps/digital_signage.rb', line 356

attribute :aspect_ratio

#baud_rateString

Returns the baud rate of the RS232 connection to the display.

Returns:

  • (String)

    the baud rate of the RS232 connection to the display



360
# File 'lib/lws/apps/digital_signage.rb', line 360

attribute :baud_rate

#channelsArray<Channel>

Returns the channels using the display.

Returns:

  • (Array<Channel>)

    the channels using the display



364
# File 'lib/lws/apps/digital_signage.rb', line 364

has_many :channels, class_name: "LWS::DigitalSignage::Channel"

#data_bitsString

Returns the data bits setting of the RS232 connection to the display.

Returns:

  • (String)

    the data bits setting of the RS232 connection to the display



368
# File 'lib/lws/apps/digital_signage.rb', line 368

attribute :data_bits

#inputsArray<Display::Input>

Returns the inputs supported by the display.

Returns:



372
# File 'lib/lws/apps/digital_signage.rb', line 372

has_many :inputs, class_name: "LWS::DigitalSignage::Display::Input"

#nameString

Returns the name of the display.

Returns:

  • (String)

    the name of the display



376
# File 'lib/lws/apps/digital_signage.rb', line 376

attribute :name

#parity"none", ...

Returns the parity setting of the RS232 connection to the display.

Returns:

  • ("none", "odd", "even" "mark", "space")

    the parity setting of the RS232 connection to the display



381
# File 'lib/lws/apps/digital_signage.rb', line 381

attribute :parity

#power_off_commandString?

Returns the command to turn the display off via the RS232 connection.

Returns:

  • (String, nil)

    the command to turn the display off via the RS232 connection



397
# File 'lib/lws/apps/digital_signage.rb', line 397

attribute :power_off_command

#power_off_feedback_commandString?

Returns the feedback command to turn the display off via the RS232 connection.

Returns:

  • (String, nil)

    the feedback command to turn the display off via the RS232 connection



401
# File 'lib/lws/apps/digital_signage.rb', line 401

attribute :power_off_feedback_command

#power_off_feedback_resultString?

Returns the result of the feedback command to turn the display off via the RS232 connection.

Returns:

  • (String, nil)

    the result of the feedback command to turn the display off via the RS232 connection



405
# File 'lib/lws/apps/digital_signage.rb', line 405

attribute :power_off_feedback_result

#power_on_commandString?

Returns the command to turn the display on via the RS232 connection.

Returns:

  • (String, nil)

    the command to turn the display on via the RS232 connection



385
# File 'lib/lws/apps/digital_signage.rb', line 385

attribute :power_on_command

#power_on_feedback_commandString?

Returns the feedback command to turn the display on via the RS232 connection.

Returns:

  • (String, nil)

    the feedback command to turn the display on via the RS232 connection



389
# File 'lib/lws/apps/digital_signage.rb', line 389

attribute :power_on_feedback_command

#power_on_feedback_resultString?

Returns the result of the feedback command to turn the display on via the RS232 connection.

Returns:

  • (String, nil)

    the result of the feedback command to turn the display on via the RS232 connection



393
# File 'lib/lws/apps/digital_signage.rb', line 393

attribute :power_on_feedback_result

#resolutionsArray<Display::Resolution>

Returns the resolutions supported by the display.

Returns:



409
# File 'lib/lws/apps/digital_signage.rb', line 409

has_many :resolutions, class_name: "LWS::DigitalSignage::Display::Resolution"

#slugString (readonly)

Returns the slug(ified name) of the display.

Returns:

  • (String)

    the slug(ified name) of the display



413
# File 'lib/lws/apps/digital_signage.rb', line 413

attribute :slug

#stop_bitsString

Returns the stop bits setting of the RS232 connection to the display.

Returns:

  • (String)

    the stop bits setting of the RS232 connection to the display



417
# File 'lib/lws/apps/digital_signage.rb', line 417

attribute :stop_bits