You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

28 lines
948 B

package haus.nightmare.GlassTesla;
public class ClimateState {
public boolean battery_heater;
public boolean battery_heater_no_power;
public String climate_keeper_mode;
public int defrost_mode;
public double driver_temp_setting;
public int fan_status;
public double inside_temp;
public boolean is_auto_conditioning_on;
public boolean is_climate_on;
public boolean is_front_defroster_on;
public boolean is_preconditioning;
public boolean is_rear_defroster_on;
public int left_temp_direction;
public double max_avail_temp;
public double min_avail_temp;
public double outside_temp;
public double passenger_temp_setting;
public boolean remote_heater_control_enabled;
public int right_temp_direction;
public int seat_heater_left;
public int seat_heater_right;
public boolean side_mirror_heaters;
public long timestamp;
public boolean wiper_blade_heater;
}