Revision as of 18:08, 20 April 2020 by Registered User

This page provides help with the most common questions about STM32CubeMonitor.

1. Where to download STM32CubeMonitor

All required resources are available on www.st.com : STM32CubeMonitor

2. Is there a "getting started" tutorial ?

There is a video explaining how to start an acquisition flow. It is visible on Youtube : "Getting started" video

3. Is it possible to add external nodes

Of course you can add external nodes to your palette via the menu "Manage palette".

manage palette.png

You may not see the menu because Node-Red uses npm to install nodes, and the menu "Manage Palette" is not available when npm is not installed on the computer. In order to add nodes in the palette, you need to install nodejs (with npm). Then the menu will be available, you will have access to Node-RED nodes.

4. Is it possible to write variable(s) programmatically without write widget

To write data by flow, the following payload must be sent to probe out node ,with the topic “write” :

 {  
   "variablelist": [
        {
            "address": "0x20000060",
            "type": 4,
            "value": "xxxx"
        }
    ],
    "accesspoint": 0
 }

One possible flow with standard nodes, look like:

5. Is there a way to plot arbitrary variable like STMStudio "point viewer"