我目前正在开发一个项目,该项目应该返回时间戳,可接受的类型,可接受的ID,温度,接近度,移动/不移动。
大多数返回都可以在estimoke.sdk.Nearable中找到,而在cloud.model.nearabletype中找到了nearable类型,虽然问题是我不知道如何在我的代码中调用它。
我试过
.append("Type: ").append(NearableInfo(NearableType)).append("\n")
和
.append("Type: ").append(currentNearable.NearableType).append("\n")
但两者都返回错误,任何帮助都会受到赞赏。
答案 0 :(得分:0)
广告包中不播放可忍受类型,这就是为什么它不属于NearableInfo
类的原因。
相反,类型存储在Estimote Cloud中,因此您需要使用Estimote SDK从那里获取它。您可以通过EstimoteCloud#fetchNearableDetails
方法执行此操作。您将在回调中获得type
对象,并且该对象具有int x= 5;
x.ToString();
属性,该属性具有您正在寻找的内容。