module Tinkerforge

This file was automatically generated on 2021-05-06. #

#

Ruby Bindings Version 2.1.29 #

#

If you have a bugfix for this file and want to commit it, # please fix the bug in the generator. You can find a link # to the generators git repository on tinkerforge.com #

Constants

DEVICE_DISPLAY_NAMES
VERSION

Public Instance Methods

get_device_display_name(device_identifier) click to toggle source

internal

# File lib/tinkerforge/device_display_names.rb, line 160
def get_device_display_name(device_identifier)
  device_display_name = DEVICE_DISPLAY_NAMES[device_identifier]

  if device_display_name == nil
    device_display_name = "Unknown Device [#{device_identifier}]"
  end

  device_display_name
end