Example of how to read results of Intent to WiiScale Android application
switch (requestCode) {
case WEIGHT_REQUEST:
if (resultCode == RESULT_OK) {
String unit = data.getStringExtra("unit");
double weight = data.getDoubleExtra("weight", 0);
}
}