class Motor::CIM

Public Class Methods

new(qty = 1) click to toggle source
Calls superclass method Motor::Motor::new
# File lib/vex-motors.rb, line 59
def initialize(qty = 1)
  super()
  @stall_current = 131
  @stall_torque = 2.41
  @free_speed = 5330
  @max_power = 337
  set_quantity qty
end