
package b4a.bbb;

import java.io.IOException;
import anywheresoftware.b4a.BA;
import anywheresoftware.b4a.pc.PCBA;
import anywheresoftware.b4a.pc.RDebug;
import anywheresoftware.b4a.pc.RemoteObject;
import anywheresoftware.b4a.pc.RDebug.IRemote;
import anywheresoftware.b4a.pc.Debug;
import anywheresoftware.b4a.pc.B4XTypes.B4XClass;
import anywheresoftware.b4a.pc.B4XTypes.DeviceClass;

public class setup implements IRemote{
	public static setup mostCurrent;
	public static RemoteObject processBA;
    public static boolean processGlobalsRun;
    public static RemoteObject myClass;
    public static RemoteObject remoteMe;
	public setup() {
		mostCurrent = this;
	}
    public RemoteObject getRemoteMe() {
        return remoteMe;    
    }
    
	public static void main (String[] args) throws Exception {
		new RDebug(args[0], Integer.parseInt(args[1]), Integer.parseInt(args[2]), args[3]);
		RDebug.INSTANCE.waitForTask();

	}
    static {
        anywheresoftware.b4a.pc.RapidSub.moduleToObject.put(new B4XClass("setup"), "b4a.bbb.setup");
	}

public boolean isSingleton() {
		return true;
	}
     public static RemoteObject getObject() {
		return myClass;
	 }

	public RemoteObject activityBA;
	public RemoteObject _activity;
    private PCBA pcBA;

	public PCBA create(Object[] args) throws ClassNotFoundException{
		processBA = (RemoteObject) args[1];
		activityBA = (RemoteObject) args[2];
		_activity = (RemoteObject) args[3];
        anywheresoftware.b4a.keywords.Common.Density = (Float)args[4];
        remoteMe = (RemoteObject) args[5];
		pcBA = new PCBA(this, setup.class);
        main_subs_0.initializeProcessGlobals();
		return pcBA;
	}
public static RemoteObject __c = RemoteObject.declareNull("anywheresoftware.b4a.keywords.Common");
public static RemoteObject _btn_paired = RemoteObject.declareNull("anywheresoftware.b4a.objects.ButtonWrapper");
public static RemoteObject _btn_scan = RemoteObject.declareNull("anywheresoftware.b4a.objects.ButtonWrapper");
public static RemoteObject _clvscan = RemoteObject.declareNull("anywheresoftware.b4a.objects.ListViewWrapper");
public static RemoteObject _label1 = RemoteObject.declareNull("anywheresoftware.b4a.objects.LabelWrapper");
public static RemoteObject _label2 = RemoteObject.declareNull("anywheresoftware.b4a.objects.LabelWrapper");
public static RemoteObject _label4 = RemoteObject.declareNull("anywheresoftware.b4a.objects.LabelWrapper");
public static RemoteObject _label6 = RemoteObject.declareNull("anywheresoftware.b4a.objects.LabelWrapper");
public static RemoteObject _lbl_statut_ble = RemoteObject.declareNull("anywheresoftware.b4a.objects.LabelWrapper");
public static RemoteObject _lblinfo_appaired = RemoteObject.declareNull("anywheresoftware.b4a.objects.LabelWrapper");
public static RemoteObject _lblinfolevel = RemoteObject.declareNull("anywheresoftware.b4a.objects.LabelWrapper");
public static RemoteObject _panel_setup = RemoteObject.declareNull("anywheresoftware.b4a.objects.PanelWrapper");
public static RemoteObject _pbscan = RemoteObject.declareNull("anywheresoftware.b4a.objects.ProgressBarWrapper");
public static RemoteObject _txtlocalisation = RemoteObject.declareNull("anywheresoftware.b4a.objects.EditTextWrapper");
public static RemoteObject _idcapteur = RemoteObject.createImmutable(0);
public static RemoteObject _localisation_capteur = RemoteObject.createImmutable("");
public static RemoteObject _info_sensor = null;
public static RemoteObject _ime = RemoteObject.declareNull("anywheresoftware.b4a.objects.IME");
public static RemoteObject _lbl_temp_consigne = RemoteObject.declareNull("anywheresoftware.b4a.objects.LabelWrapper");
public static RemoteObject _seekbar_consigne_t = RemoteObject.declareNull("anywheresoftware.b4a.objects.SeekBarWrapper");
public static RemoteObject _temp_value = RemoteObject.createImmutable(0f);
public static b4a.bbb.main _main = null;
public static b4a.bbb.starter _starter = null;
public static b4a.bbb.param _param = null;
public static b4a.bbb.cockpit _cockpit = null;
public static b4a.bbb.collecte_data_sensor _collecte_data_sensor = null;
public static b4a.bbb.httputils2service _httputils2service = null;
  public Object[] GetGlobals() {
		return new Object[] {"Activity",setup.mostCurrent._activity,"btn_paired",setup.mostCurrent._btn_paired,"btn_scan",setup.mostCurrent._btn_scan,"clvScan",setup.mostCurrent._clvscan,"Cockpit",Debug.moduleToString(b4a.bbb.cockpit.class),"Collecte_data_sensor",Debug.moduleToString(b4a.bbb.collecte_data_sensor.class),"HttpUtils2Service",Debug.moduleToString(b4a.bbb.httputils2service.class),"IdCapteur",setup._idcapteur,"IME",setup.mostCurrent._ime,"info_sensor",setup.mostCurrent._info_sensor,"Label1",setup.mostCurrent._label1,"Label2",setup.mostCurrent._label2,"Label4",setup.mostCurrent._label4,"Label6",setup.mostCurrent._label6,"lbl_statut_BLE",setup.mostCurrent._lbl_statut_ble,"Lbl_temp_consigne",setup.mostCurrent._lbl_temp_consigne,"lblinfo_appaired",setup.mostCurrent._lblinfo_appaired,"lblinfolevel",setup.mostCurrent._lblinfolevel,"Localisation_capteur",setup.mostCurrent._localisation_capteur,"Main",Debug.moduleToString(b4a.bbb.main.class),"Panel_setup",setup.mostCurrent._panel_setup,"Param",Debug.moduleToString(b4a.bbb.param.class),"pbscan",setup.mostCurrent._pbscan,"SeekBar_consigne_T",setup.mostCurrent._seekbar_consigne_t,"Starter",Debug.moduleToString(b4a.bbb.starter.class),"temp_value",setup._temp_value,"txtLocalisation",setup.mostCurrent._txtlocalisation};
}
}