thingy91 firmware source code

I want to edit the explom firmware that comes with thingy91 to add the reading of new sensors and send them to nrf cloud. Where can I get the example of the Asset Tracker V2 code? Is there a repository on github? Is this the example of nrf9160

I would like to use nrf cloud as a server for my application and the graphical interface website to view the data. Can I change the NRF Cloud website to add a new sensor field, for example? If not, how could I improve my graphical interface? Would I need to pass the information to a proprietary cloud?

Parents Reply Children
  • Your device should send a device message to nRF Cloud with the format specified in the previous answer.
    For example:
    {
       "appId": gyroX,
       "ts": 1728074641329,
       "data": 1.234
    }

    When you are viewing your device page on nrfcloud.com and your device sends a message with the above format, the card will appear.
    On the card, you can click the clock icon to view the historical data in a graph.

    The configuration in your screenshot is the device configuration that is saved to the device's shadow.
    This can be used for application specific configuration/control.

  • I can send the new data to the cloud now and the custom card appears. But if I close the website and open it again, I have to wait for the device to send the data to the cloud and keep the browser open for the custom card to appear. Is there any way to keep the custom card fixed, maybe it's in that field that I took a screenshot of?

Related