How to Build a Sensor Simulator for Android? - Stack Overflow most recent 30 from stackoverflow.com2009-12-01T23:49:15Zhttp://stackoverflow.com/feeds/question/1059839http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1059839/how-to-build-a-sensor-simulator-for-android1How to Build a Sensor Simulator for Android?Hugo2009-06-29T18:47:09Z2009-06-30T04:18:08Z
<p>Hello,</p>
<p>I am building a application for the Android platform and I would like to use the accelerometer. Now, I have found a very nice application for sensor simulation (<a href="http://code.google.com/p/openintents/wiki/SensorSimulator" rel="nofollow">OpenIntents' SensorSimulator</a>) but, for what I want to do, a would like to create my own sensor simulator application.</p>
<p>I have not found information on how to do this (I do not know if disassembly the jar of the Simulator is correct) and, as I said, I would like to build a smaller and simpler version of a sensor simulator, more suitable for my intents.</p>
<p>Do you know where could I start? where can I see what are the pieces of code that I need to build?</p>
<p>Basically, all my asking just for some direction =)</p>
<p>Thanks in advance for your answers.</p>
http://stackoverflow.com/questions/1059839/how-to-build-a-sensor-simulator-for-android/1061701#10617011Answer by Isaac Waller for How to Build a Sensor Simulator for Android?Isaac Waller2009-06-30T04:18:08Z2009-06-30T04:18:08Z<p>Well, it seems what you want to make is a application that will emulate the sensors on a Android device for your application while testing on the emulator.<br />
Probably in your application, you have a line like this: </p>
<pre><code>SensorManager mSensorManager = (SensorManager)getSystemService(SENSOR_SERVICE);
</code></pre>
<p>Why not create a interface that has the methods you use from SensorManager:</p>
<pre><code>interface MySensorManager {
List<Sensor> getSensorList(int type);
... // You will need to add all the methods you use from SensorManager here
}
</code></pre>
<p>And then create a wrapper for SensorManager that just calls those methods on a real SensorManager object:</p>
<pre><code>class MySensorManagerWrapper implements MySensorManager {
SensorManager mSensorManager;
MySensorManagerWrapper(SensorManager sensorManager) {
super();
mSensorManager = sensorManager;
}
List<Sensor> getSensorList(int type) {
return mSensorManager.getSensorList(type_;
}
... // All the methods you have in your MySensorManager interface will need to be defined here - just call the mSensorManager object like in getSensorList()
}
</code></pre>
<p>And then create another MySensorManager, that this time communicates over a socket to a desktop application you will create where you enter the sensor values or something:</p>
<pre><code>class MyFakeSensorManager implements MySensorManager {
Socket mSocket;
MyFakeSensorManager() throws UnknownHostException, IOException {
super();
// Connect to the desktop over a socket
mSocket = = new Socket("(IP address of your local machine - localhost won't work, that points to localhost of the emulator)", SOME_PORT_NUMBER);
}
List<Sensor> getSensorList(int type) {
// Use the socket you created earlier to communicate to a desktop app
}
... // Again, add all the methods from MySensorManager
}
</code></pre>
<p>And finally, replace your first line:</p>
<pre><code>SensorManager mSensorManager = (SensorManager)getSystemService(SENSOR_SERVICE);
</code></pre>
<p>With a new line:</p>
<pre><code>MySensorManager mSensorManager;
if(YOU_WANT_TO_EMULATE_THE_SENSOR_VALUES) {
mSensorManager = new MyFakeSensorManager();
else {
mSensorManager = new MySensorManagerWrapper((SensorManager)getSystemService(SENSOR_SERVICE));
}
</code></pre>
<p>Now you can just use that object instead of the SensorManager you used before.<br />
Sorry for such a long answer,<br />
Isaac Waller</p>