This post is older than 2 years and might not be relevant anymore
More Info: Consider searching for newer posts

nRF9160: LTE Sensor Gateway

I have managed to upload data from nRF52832 using nRF9160. I upload the data as tempreture sensor (although they are just values in mV), and my interface at the nRF connect for Cloud looks like this 

my questions are 

  1. How can I change this interface? Instead of Temperature i want to use another label, for example voltage.
  2. Are the data permanently stored in my cloud account? 
  3. If they are, how can i retrieve them for further processing. 
  4. Can I move the data to other website such as Microsoft Azure or Power BI?

please assist 

Parents Reply
  • The messages call requires 2 parameters, inclusiveStart and exclusiveEnd. Both of these are a part of the url, so the url would be similar to this:

    https://api.nrfcloud.com/v1/messages?inclusiveStart=2019-01-01T00%3A00%3A00.000Z&exclusiveEnd=2019-08-01T00%3A00%3A00.000Z

    However, Windows CMD parses the & (right before exclusiveEnd), so it must be escaped for the url to be read correctly,  so your command would be similar to this:

    http https://api.nrfcloud.com/v1/messages?inclusiveStart=2019-01-01T00%3A00%3A00.000Z^&exclusiveEnd=2019-08-01T00%3A00%3A00.000Z Authorization:"Bearer <your API token"

    Note the ^ before the &

Children
Related