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
  • Hello,

    Where can I get the example of the Asset Tracker V2 code? Is there a repository on github? Is this the example of nrf9160

    Yes, you found it! Asset Tracker v2 is part of nRF Connect SDK and can be found in nrf/applications in your nRF Connect SDK installation. If you haven't installed nRF Connect SDK, please see the user guide for installing it here. The application documentation for Asset Tracker v2 is available here.

    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?

    I have asked the nRF Cloud experts about this. This ticket will be updated when they have a response.

    Best regards,

    Maria

  • Hello,

    nRF Cloud will create a custom app card with a graph for any message that contains the following properties:

    {
     "appId": <string>,
      "ts": <unix timestamp>,
      "data": <number>
    }

    Note: If you refresh the page the card won't be visible until the device sends that data type again. Once the card is visible you can use the historical view to see data previously sent. We are working on a fix for this in the future.

    Hope this helps,

    Nate

  • where do I edit this container, here?
    view config/edit config/

    I have a problem similar to this:  How to create a new data box in the nRF cloud website? 


    Is it not possible to create a new card with data from other sensors such as a gyroscope?

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.

Related