gtx77

About

Username
gtx77
Joined
Visits
71
Last Active
Roles
Member

Comments

  • Hi Eric, I have tested the new application and at first seems ok, it reads and displays the value obtained from the i2c, there is a big problem which makes the bluetooth communication unstable and disconnects and reconnects every so and often it fr…
  • Hi Eric, Thanks for your explanation. I just have one doubt about this. As I will require to have the 4 samples obtained in each pass of the for loop, as the way you have described in your example, once we exit the success function (when have obtai…
  • LineData data = chart.getData(); if (startTime == -1) { data.addXValue("0"); startTime= System.currentTimeMillis(); } else { data.addXValue(String.format("%.2f", (System.currentTimeMillis() - star…
  • //We are going to setup the first communication through i2c to get the differential value of CH2-CH3 i2cModule.writeData((byte) 0x34, (byte) 0x00, new byte[]{(byte) 0xA1, (byte) 0x13}); //SystemClock.sleep(SCAN_PERIOD); …
  • Hi Eric, What I want to do with my application is to read the values from one channel, then read the value from the other channels, store them in auxiliar variables and repeat again 3 more times. This is done to later make an average of the samples…
  • Hi Matt, Thanks for your response. I have done what you said but it was still the same. However I solved the issue by using the following code: //We are going to setup the first communication through i2c to get the differential value of CH0-CH1 i2c…
  • By when will he have any update/news about this?
  • Hi Eric, I have done what you said and retrieves without a problem 0x58. So what does this mean? How I can solve my initial problem? Regards
  • Is it possible that the C-PRO doesn't have a universal I2C communication? I say it because with other way (like mbed) I can communicate with my adc and retrieve the data without a problem but when trying with the Android SDK of the Metawear, it does…
  • I have done what you said, update it to the v1.1.3, but it still doesn't work. I have checked separately if the ADC works, and is working perfectly. I have checked with the logic Analyzer what is happening, and this is the output I am having (I coul…
  • Hi Eric, I am using the C-CPRO board and the firmware it has is the 1.0.4. Is that the reason why it fails to communicate? Thanks for your previous answer
  • Thanks for you answer. I forgot to say it before but what I will have to read from the register is 20 bits of information but I would only need the bits from 16-0 the other 4 aren't relevant. So I will need to read 3 bytes of info. From the other qu…