Exemple #1
0
 private static void comandoRobGps(string uuid, string msg, DBStorage db)
 {
     string[] data = msg.Split('@');
     if (data.Length == 3)
     {
         try
         {
             db.addRobotGps(Guid.Parse(uuid), Int16.Parse(data[0]), Int16.Parse(data[1]), Int16.Parse(data[2]));
         }
         catch (Exception) { return; }
     }
 }