如何在文本视图中显示具有更新值的数据?
Posted
技术标签:
【中文标题】如何在文本视图中显示具有更新值的数据?【英文标题】:How do I display data with values updated in a textview? 【发布时间】:2016-03-28 05:37:59 【问题描述】:我想如下图所示显示我的数据:
现在我的数据显示在列表视图中,如图所示。但问题是我不知道我收到了什么数据。换句话说,我不知道何时会收到温度数据,何时会收到 RBPM 和 SPO2。
#include <PinChangeInt.h>
#include <PinChangeIntConfig.h>
#include <eHealth.h>
#include <eHealthDisplay.h>
int cont = 0;
void setup()
Serial.begin(9600);
eHealth.initPulsioximeter();
//Attach the inttruptions for using the pulsioximeter.
PCintPort::attachInterrupt(6, readPulsioximeter, RISING);
void loop()
//getting the value as a variable
int BPMval= eHealth.getBPM();
int SPO2val = eHealth.getOxygenSaturation();
float temperature = eHealth.getTemperature();
Serial.println(BPMval);
Serial.println(SPO2val);
Serial.println(temperature, 2);
delay(250);
//Include always this code when using the pulsioximeter sensor
//=========================================================================
void readPulsioximeter()
cont ++;
if (cont == 50) //Get only of one 50 measures to reduce the latency
eHealth.readPulsioximeter();
cont = 0;
您好,我在此处包含了 Arduino 代码以获取更多详细信息。我应该打印类似 println("#");所以我可以识别我收到的数据??
【问题讨论】:
【参考方案1】:对此我们无能为力。您必须能够识别输入类型。
您可以尝试使用正则表达式模式匹配“也许”(取决于两个(或更多)输入可能性的一致性。
http://developer.android.com/reference/java/util/regex/Pattern.html
【讨论】:
嗨 @mawalker 我发布了 Arduino 代码。那么android有可能知道它收到了什么吗?就像我 println("#") 会被 android 识别吗?以上是关于如何在文本视图中显示具有更新值的数据?的主要内容,如果未能解决你的问题,请参考以下文章