I am new to beacons and Android programming. I try to get the telemetry data of my beacons. I followed the tutorial of estimote telemetry, there is one line:
Log.d(“TELEMETRY”, “beaconID: " + tlm.deviceId +
”, temperature: " + tlm.temperature + " °C");
I used it and can see my temperature data in the Logcat of Android Studio.
My question is how to generate a file for these data, and store it either in the device using app, or real-time transmit back to my estimote cloud in order to help the further analysis.
I think the first link can provide what I need. However, I think I can sent the data to Estimote Could, but still don’t understand how to query that data. I see the link has some code saying we can access to that data programmatically via Estimote Cloud RESTful API, but I am new to it and don’t know where I should type in these codes.
That code is just an example that will give you general idea how telemetry data collection works, how returned data looks like and you can quickly use it to verify if your data is being collected. I would not use it for production, but rather write proper REST client in language of your choice.
To use that code you need to run it from Linux/MacOS command line (after setting your own AppID/AppToken). Make sure you have python and curl installed.
hey I am working on something related to telemetry data I am using wireless sensor and wanted to make this sensor talk with beacons in such a way that readings of sensor will be display by remote through wireless communication
I am new comer to this process so need some suggestions which help me to implement this process
How do you think that beacons will help you to display data? Maybe you want to use Estimote Mirror? It has WiFi built-in and is able to download data from internet. Your wireless sensor needs to upload data to Cloud and custom Mirror template can display it on TV screen. However you must somehow push data from this sensor to Cloud. Since this sensor is using some undisclosed long range radio technology and beacons are using Bluetooth Low Energy (which by design is short range) it is not possible to directly send data between them. You will need to build a gateway that will connect to that wireless sensor and then send data either to cloud or to display.