Design Pattern Advice for Bluetooth App for Android

Posted by Aimee Jones on Programmers See other posts from Programmers or by Aimee Jones
Published on 2012-11-28T00:06:20Z Indexed on 2012/11/28 5:25 UTC
Read the original article Hit count: 352

I’m looking for some advice on which patterns would apply to some of my work. I’m planning on doing a project as part of my college work and I need a bit of help. My main project is to make a basic Android bluetooth tracking system where the fixed locations of bluetooth dongles are mapped onto a map of a building. So my android app will regularly scan for nearby dongles and triangulate its location based on signal strength.

The dongles location would be saved to a database along with their mac addresses to differentiate between them. The android phones location will then be sent to a server. This information will be used to show the phone’s location on a map of the building, or map of a route taken, on a website.

My side project is to choose a suitable design pattern that could be implemented in this main project. I’m still a bit new to design patterns and am finding it hard to get my head around ones that may be suitable. I’ve heard maybe some that are aimed at web applications for the server side of things may be appropriate. My research so far is leading me to the following:

  • Navigation Strategy Pattern
  • Observer Pattern
  • Command Pattern News
  • Design Pattern Any advice would be a great help! Thanks

© Programmers or respective owner

Related posts about java

Related posts about design