Farmbot-Web-App/app/models/peripheral.rb

14 lines
586 B
Ruby

# Information about electronic devices attached to a bot's GPIO pins.
# This is used for reference and is not used to directly control the device.
# Examples: temperature probes, LEDs, etc.
class Peripheral < ApplicationRecord
belongs_to :device
validates :device, presence: true
validates :pin, presence: true
validates :pin, uniqueness: { scope: :device }
validates :pin, numericality: { only_integer: true,
greater_than_or_equal_to: 0,
less_than_or_equal_to: 1000 }
validates :label, presence: true
end