1 / 27

PROGRAMOWANIE URZ Ą DZE Ń MOBILNYCH  rodzaje urz ą dze ń mobilnych

PROGRAMOWANIE URZ Ą DZE Ń MOBILNYCH  rodzaje urz ą dze ń mobilnych - telefony komórkowe, smartfony - komputery typu palmtop ( handheld, pocket PC, Personal Digital Assistant ) - tablety - urz ą dzenia specjalizowane (nawigacyjne, inwentaryzacyjne ... ).

curry
Download Presentation

PROGRAMOWANIE URZ Ą DZE Ń MOBILNYCH  rodzaje urz ą dze ń mobilnych

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. PROGRAMOWANIE URZĄDZEŃ MOBILNYCH rodzaje urządzeń mobilnych - telefony komórkowe, smartfony - komputery typu palmtop ( handheld, pocket PC, Personal Digital Assistant ) - tablety - urządzenia specjalizowane (nawigacyjne, inwentaryzacyjne ... )

  2. systemy programowania: Java Virtual Machine - CLDC ( Connected Limited Service Configuration ) - MIDP 1.0, 2.0 ( Mobile Information Device Profile ) • systemy operacyjne - PalmOS (Garnet OS)‏ - Symbian, EPOC (Psion)‏ - Windows : CE ; Mobile 2003, 5.0, 6.0, 6.1, Phone 7.0 , 8.0-Andriod ( Linux ) - MeeGo Core Software Platform (Intel/Nokia/Linux) - iOS ( iPhone OS )

  3. wyposażenie -łącza komunikacyje GSM (GPRS, EDGE, HSDC, LTE), WiFi, Bluetooth, USB, IrDA, TransferJet - odbiornik GPS - NFC (RFID) - czujniki : oświetlenia, żyroskop, kompas, akcelerometr - klawiatura - aparat fotograficzny / kamera - radio

  4.  usługi - rozmowy telefoniczne - multimedia - internet - aplikacje zastosowania (niektóre) - lokalizacja, nawigacja - akwizycja - pozyskiwanie informacji - pomiary

  5. tworzenie aplikacji Windows Mobile - ActiveSync - Remote Display Control - Visual Studio.NET 2008 - NET Compact Framework 3.5 - wspomaganie uruchamiania - usuwanie - testowanie zasobów Microsoft.WindowsMobile.Status.SystemProperty.CameraPresent.Equals(1) // using Microsoft.WindowsMobile.Status; TT, Egzamin, Camera

  6. Baza Danych SQL Mobile string dbPath = @"\My Documents\indeks.sdf"; string makeDbPath = @"\My Documents\makeDb.sql"; if(System.IO.File.Exists(makeDbPath)) { System.Data.SqlServerCe.SqlCeEngine engine = newSqlCeEngine("Data Source = " + dbPath); engine.CreateDatabase(); SqlCeConnection dbConnection = newSqlCeConnection("Data Source = " + dbPath); dbConnection.Open(); }

  7. // View groups System.Data.SqlServerCe.SqlCeDataReader reader = null; string queryText = "SELECT * FROM groups order by name"; SqlCeCommand query = new SqlCeCommand(queryText, dbConnection); reader = query.ExecuteReader(); groupsListBox.Items.Clear(); ListViewItem ListItem = null; while(reader.Read()) {ListItem = new ListViewItem(); ListItem.Text = reader["name"].ToString(); ListItem.SubItems.Add(reader["id"].ToString()); groupsListBox.Items.Add(ListItem); } reader.Close();

  8. • S d h O Z x GPS : Global Positioning System - ok. 30 satelitów, - orbity kołowe, ok. 20 000 km nad Ziemią - naziemne stacje nadzorujące - komunikaty : { TN , Z , h , . . . } d = c * ( TO – TN ) x = sqrt ( d2 – h2 )

  9. x • Z O O2 • Z1 • Z2 x1 x2 O1 - dokładność : 4 – 12 m - czas przesłania komunikatu : ok. 70 ms - różnica czasów dla 1 km : ok. 3 µs

  10. - polepszanie dokładności : stacje bazowe - ASG-EUPOS : 3 cm - POZGEO i POZGEO-D: 1 mm - przyspieszenie lokalizacji : A-GPS współpraca z operatorem telefonii komórkowej

  11. Odbiornik GPS - włączany programowo, COMx        standard National Marine Electronics Association ( NMEA )‏ http://www.gpsinformation.org/dale/nmea.htm - sekwencje znaków ( sentences )‏ - nagłówki $GP (ok. 30 rodzajów)‏ GGA : czas + współrzędne + wysokość npm GSA, GSV : dane satelitów ZDA : data + czas

  12. $GPGGA,123519,4807.038,N,01131.000,E,1,08,0.9,545.4,M,46.9,M,,*47$GPGGA,123519,4807.038,N,01131.000,E,1,08,0.9,545.4,M,46.9,M,,*47 Where: GGA Global Positioning System Fix Data 123519 Fix taken at 12:35:19 UTC 4807.038,N Latitude 48 deg 07.038' N 01131.000,E Longitude 11 deg 31.000' E 1 Fix quality: 0 = invalid 1 = GPS fix (SPS) 2 = DGPS fix 3 = PPS fix 4 = Real Time Kinematic 5 = Float RTK 6 = estimated (dead reckoning) (2.3 feature) 7 = Manual input mode 8 = Simulation mode

  13. $GPGGA,123519,4807.038,N,01131.000,E,1,08,0.9,545.4,M,46.9,M,,*47$GPGGA,123519,4807.038,N,01131.000,E,1,08,0.9,545.4,M,46.9,M,,*47 08 Number of satellites being tracked 0.9 Horizontal dilution of position 545.4,M Altitude, Meters, above mean sea level 46.9,M Height of geoid (mean sea level) above WGS84 ellipsoid (empty field) time in seconds since last DGPS update (empty field) DGPS station ID number *47 the checksum data, always begins with * GPSR, LonLat

  14. biblioteka GPS Intermediate Driver - główne klasy GPS – reprezentuje odbiornik GpsDeviceState – stan odbiornika GpsPosition – pozycja geograficzna DeegreesMinutesSeconds – konwersja xx,xxxº xxºyy' zz'' - zdarzenia deviceStateChanged ( GpsDeviceState ) locationChanged ( GpsPosition )

  15. GpsDeviceState device = null; • GpsPosition position = null; • Gpsgps = newGps(); • // • private void startGps(object sender,EventArgs e) • {if (!gps.Opened) • { gps.Open(); } } • private void stopGps (object sender, • EventArgs e) • {if (gps.Opened) • { gps.Close(); } }

  16. string UpdateData(object sender,System.EventArgs args) { string str = ""; if (gps.Opened) { if (position != null) { if (position.LatitudeValid) str += "Latitude (D,M,S):\n " + position.LatitudeInDegreesMinutesSeconds + "\n";

  17. if (position.LongitudeValid) str += "Longitude (D,M,S):\n " + position.LongitudeInDegreesMinutesSeconds + "\n"; } } return str; }

  18. Wiadomości SMS wysyłanie SmsMessage sms = newSmsMessage(number, text); sms.Send(); odbieranie interceptor = new MessageInterceptor(); interceptor.InterceptionAction = InterceptionAction.NotifyAndDelete; interceptor.MessageReceived +=newMessageInterceptorEventHandler(OnSmsReceived);

  19. private void OnSmsReceived (object sender, MessageInterceptorEventArgs e) { SmsMessage msg = (SmsMessage)e.Message; textBox1.Text = msg.From.Address; textBox2.Text = msg.Body; } SMS

  20. Sieć Internet (transmisja GPRS) sprowadzanie stron WWW HttpWebRequest req =(HttpWebRequest)WebRequest.Create(pageUri); HttpWebResponse resp = (HttpWebResponse)req.GetResponse(); StreamReader sr = new StreamReader(resp.GetResponseStream()); pageData = sr.ReadToEnd(); sr.Close(); GetPage (bez USB)

  21. Sieć bezprzewodowa WiFi WiFiMail klient TcpClientclient = new TcpClient(); client.Connect(server, port); NetworkStream stream= client.GetStream(); // stream.Write(outData, 0, outData.Length); // stream.Read(inData, 0, inData.Length);

  22. serwer IPEndPoint LEP = new IPEndPoint(IPAddress.Any,5000); TcpListener listener= new TcpListener( LEP ); listener.Start(); TcpClientNew = listener.AcceptTcpClient(); NetworkStream streamX= New.GetStream(); // streamX.Write(outData, 0, outData.Length); // streamX.Read(inData, 0, inData.Length);

  23. Łącze Bluetooth porty szeregowe COM klucz sieciowy otwarcie portu serialPort1.Open(); // PDA:COM5, PC:COM7 wysłanie tekstu serialPort1.WriteLine(text); odczytanie tekstu void serialPort1_DataReceived(object sender, System.IO.Ports.SerialDataReceivedEventArgs e) {data = serialPort1.ReadExisting(); } BT

  24. serwisy internetowe : jak dla PC gniazda TCP / UDP : jak dla PC pliki XML : jak dla PC

  25. Zamówione dania Nazwa Cena Liczba ID_P Imię Utarg ID_K Razem Gotowe Aplikacja Kelnerska kuchnia Potrawy Kelnerzy

  26. Zamówione dania Nazwa Cena Liczba ID_P Razem Gotowe kelner Potrawy

  27. ID_K REZ ID_P ID_K ZWR ID_P komunikacja -kelner ID_K ZAM ID_P ID_P ... ID_P -kuchnia ID_K ODR

More Related