Class: Loader::SimpleSchedule
- Defined in:
- lib/brewser/engines/promash_rec.rb
Overview
class MashStep < RecEntry
string :name, :length => 255, :trim_padding => true
int8 :type
int32 :start_temp
int32 :stop_temp
int32 :step_temp
int32 :rest_time
int32 :step_time
float :thickness
float :amount
skip length: 8
end
class MashSchedule < RecEntry
count_bytes_remaining :bytes_remaining
string :skipped, :length => lambda { bytes_remaining - 14888 }
int32 :_steps_count
int32 :grain_temp
skip length: 4
array :mash_steps, :type => :mash_step, :read_until => lambda { index == 50 }
string :name, :length => 255, :trim_padding => true
int8 :end_byte
end