changed general settings naming and added general settings save in ui

This commit is contained in:
ori agranat
2019-10-15 21:00:18 +03:00
parent 91a1338022
commit cd94c9f8c0
13 changed files with 72 additions and 43 deletions

View File

@@ -1,12 +1,12 @@
package com.chameleonvision.settings;
public class GeneralSettings {
public int team_number = 1577;
public String connection_type = "DHCP";
public int teamNumber = 1577;
public ConnectionType connectionType = ConnectionType.DHCP;
public String ip = "";
public String gateway = "";
public String netmask = "";
public String hostname = "Chameleon-vision";
public String curr_camera = "";
public Integer curr_pipeline = null;
public String currentCamera = "";
public Integer currentPipeline = null;
}