Default [Q] HTC Legend Sensor Specifications

Hi Folks,

I'm looking for a detailed sensor specification for sensors (g-sensor, compass and gyroscope) used in HTC legend (and desire). There are a lot of general specifications out there for the devices as such but i couldn't find more information (manufacturer, modell number etc.) about the sensors. Are there any ressources that refer to these specifications?

Thanks a lot!

EDIT:::::

Ok you can get it by using the app "android system info", click "System" and open "Sensors", modellnames are shown -> websearch

alternatively one can write a minimal-app like

Code:
       mSensorManager = (SensorManager)getSystemService(SENSOR_SERVICE);
        
        List<Sensor> sensorList = mSensorManager.getSensorList(Sensor.TYPE_ALL);
        
        for( Sensor s : sensorList) {
                Log.d("sensor", "Name=" + s.getName());
                Log.d("sensor", "Vendor=" + s.getVendor());
                Log.d("sensor", "Version=" + s.getVersion());
                Log.d("sensor", "MaximumRange=" + s.getMaximumRange());
               // Log.d("sensor", "MinDelay=" + s.getMinDelay());
                Log.d("sensor", "Power=" + s.getPower());
                Log.d("sensor", "Type=" + s.getType());
        }
Turns out Legend has some 3-Axis-Accel.Sensor Bosch BMA150 and a 3-Axis-magnet Asahi Kasei AK8973.

Cheers