>
> class Looper extends BaseIOIOLooper {
>>
>> public void setup() throws ConnectionLostException {
>>
>> twi = ioio_.openTwiMaster(0, TwiMaster.Rate.RATE_100KHz, false);
>>
>> runOnUiThread(new Runnable() {
>>
>> public void run() {
>>
>> Toast.makeText(getApplicationContext(),
>>
>> "TMP102 Connected!", Toast.LENGTH_SHORT
>> ).show();
>>
>> }
>>
>> });
>>
>> }
>>
>>
>> // Simply replace the analog voltage reading with a call to your
>> getTemperature() method.
>>
>> public void loop() throws ConnectionLostException,
>> InterruptedException {
>>
>> try {
>>
>> setNumber(getTemperature());
>>
>> } catch (Exception e) {
>>
>> e.printStackTrace();
>>
>> }
>>
>> Thread.sleep(10);
>>
>> }
>>
>> public float getTemperature() throws Exception {
>>
>> if (!twi.writeRead(address, false, request, 1, response, 2)) {
>>
>> throw new Exception("I2C transaction with TMP102 failed.");
>>
>> }
>>
>> int temp = Temp.from(response[0]) << 8 | Temp.from(response[1]);
>>
>> temp >>= 4;
>>
>> return temp / 16.f + 273.15f;
>>
>> }
>>
>> }
>>
>> private void setNumber(float f) {
>>
>> final String str = String.format("%.2f", f);
>>
>> runOnUiThread(new Runnable() {
>>
>> @Override
>>
>> public void run() {
>>
>> tmpTextView.setText(str);
>>
>> }
>>
>> });
>>
>> }
>>
>> protected IOIOLooper createIOIOLooper() {
>>
>> return new Looper();
>>
>
> }
>>
> Is this is ok now?
--
You received this message because you are subscribed to the Google Groups
"ioio-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email
to [email protected].
To post to this group, send email to [email protected].
Visit this group at http://groups.google.com/group/ioio-users.
For more options, visit https://groups.google.com/d/optout.