Gpio end node catch

hello, I need to monitor the operation of some gpio (on rpi), I would like to use the catch node and possibly the status node. I never used these nodes and it is a little complicated to understand how they work.
I would like to know if it is possible to get what I need and if the catch node captures any anomalies on gpio.
thanks

They are very simple nodes, all you need to do is drag the node on to the work space and select the node you wish to monitor in the config panel. You could also try the complete node. You will need to add a debug node to check what they return, if at all anything, depending on how the node you wish to monitor has been written.

What exactly are you trying to pick up from the nodes? are they input node or an output node?

What sort of anomalies?

sometimes gives me a bug on python, but very rarely, since these gpio serve for pretty crucial actions I would like a confirmation or a warning of the good functioning.
the catch node I connect to the correct gpio are 24 inputs (16 on i2c) and 21 out (16 on i2c).
the difficulty I encounter because not being able to generate an error I do not understand what kind of output from the catch node. if possible an example would be grateful

Feed the Catch node into a Debug node set to Output Complete Message and see what you get.

I don't know under what circumstances, if ever, the GPIO nodes will generate a catchable error though.

You could also use a Status node which will give you the text that appears under the node. See what are its normal outputs are and if anything else is seen that that may indicate an error.

ok thanks for the information. I saw that it is quite simple, the catch node reports the error of the node to which you attach it, the problem is to figure out exactly what error to capture from the gpio node, doing some research seems that the most frequent error is: nrpgio python command not running.
so I will look for this error for flow management.
To find out if it works again how could I do?

What does the Status node show when it is in error, and when it recovers?

Good question, when you need the error never comes...

I attach the code that I am using to manage the error, but do not know how to handle the recovery of the error, for now I have entered that if data transit the problem is solved, but it is not the maximum result I would get, Do you have any tips for implementing a better way to handle error recovery?

// Imposta dinamicamente la chiave (modificabile facilmente qui)
var chiave = "GPIOIN_1";  // La chiave dinamica

// Recupera il payload in ingresso e forziamo il tipo in numero (utilizziamo Number())
var input = msg.payload;

// Se l'input è una stringa, forziamo la conversione in stringa
if (typeof input !== 'string') {
    input = String(input);
}

// Oggetto JSON da inviare in out2
var jsonOut2 = {
    "name": chiave,
    "stat_t": `DATI FOTOVOLTAICO/INGRESSI/${chiave}`,
    "avty_t": `DATI FOTOVOLTAICO/INGRESSI/${chiave}/LWT`,
    "pl_avail": "Online",
    "pl_not_avail": "Offline",
    "uniq_id": chiave,
    "icon": "mdi:electric-switch",
    "dev": {
        "ids": ["Quadro Domotica"],
        "name": "Quadro Domotica",
        "mf": "TopPino",
        "mdl": "Aggregatore mqtt",
        "sw": "0.1",
        "sa": "Fotovoltaico"
    }
};

// Recupera l'ultimo input salvato dal contesto
var lastInput = context.get('lastInput');
var lastOut1 = context.get('lastOut1') || null;
var lastOut2 = context.get('lastOut2') || null;
var lastOut3 = context.get('lastOut3') || null;

// Aggiungi un controllo per evitare che `null` venga trattato come un valore valido per il confronto
if (lastInput === undefined || lastInput === null) {
    // Salva l'input attuale e non inviare messaggi finché non ci sono cambiamenti futuri
    context.set('lastInput', input);
    return null; // Non inviare nulla nel primo ciclo
}

// Se l'input è uguale all'ultimo input, non fare nulla (ignora i messaggi duplicati)
if (input === lastInput && input !== 'agg') {
    // Se l'input è uguale all'ultimo e non è "agg", non fare nulla, ma ripristina lo stato su out3 a "Online"
    if (lastOut3 !== "Online") {
        lastOut3 = "Online"; // Ripristina lo stato su "Online" se l'errore è stato rimosso
        node.send([null, null, { payload: "Online" }]); // Invia solo a out3
    }
    return null;  // Non inviare nulla se l'input è lo stesso dell'ultimo e non è "agg"
}

// Se l'input è "agg", invia i messaggi precedenti senza modificare `lastInput`
if (input === 'agg') {
    if (lastOut1 !== null && lastOut2 !== null && lastOut3 !== null) {
        msg.payload = lastOut1;
        msg.topic = "out1";
        node.send([msg, { payload: lastOut2 }, { payload: lastOut3 }]);
    } else {
        // Se non c'è stato un messaggio precedente, invia un errore su out3
        node.send([null, null, { payload: null }]);
    }
    return null; // Non cambiare lo stato dopo l'aggiornamento
}

// Se il messaggio di errore è "nrpgio python command not running", invia solo "Offline" su out3
if (msg.payload === "nrpgio python command not running") {
    lastOut3 = "Offline"; // Imposta lo stato come "Offline"
    msg.payload = "Offline";
    msg.topic = "out3";
    node.send([null, null, msg]);  // Invia solo su out3

    // Memorizza lo stato per il prossimo ciclo
    context.set('lastOut3', lastOut3);
    return null; // Non inviare altro per questo ciclo
}

// Se l'input è '1', invia "ON", l'oggetto JSON e "Online" su out3
if (input === '1') {
    lastOut1 = "ON";
    lastOut2 = jsonOut2;
    lastOut3 = "Online";  // Imposta sempre "Online" quando il valore è valido
    msg.payload = "ON";
    msg.topic = "out1";
    node.send([msg, { payload: jsonOut2 }, { payload: "Online" }]);

    // Memorizza i messaggi per un eventuale reinvio
    context.set('lastOut1', lastOut1);
    context.set('lastOut2', lastOut2);
    context.set('lastOut3', lastOut3);
} 
// Se l'input è '0', invia "OFF", l'oggetto JSON e "Online" su out3
else if (input === '0') {
    lastOut1 = "OFF";
    lastOut2 = jsonOut2;
    lastOut3 = "Online";  // Imposta sempre "Online" quando il valore è valido
    msg.payload = "OFF";
    msg.topic = "out1";
    node.send([msg, { payload: jsonOut2 }, { payload: "Online" }]);

    // Memorizza i messaggi per un eventuale reinvio
    context.set('lastOut1', lastOut1);
    context.set('lastOut2', lastOut2);
    context.set('lastOut3', lastOut3);
} 
else {
    // In tutti gli altri casi invia un messaggio di errore su out3
    node.send([null, null, { payload: null }]);
}

// Memorizza lo stato dell'input per il prossimo ciclo
context.set('lastInput', input);
context.set('lastOut1', lastOut1);
context.set('lastOut2', lastOut2);
context.set('lastOut3', lastOut3);

return null;  // Non inviare nulla di default se non è stato mandato un messaggio

I have not got time to look at your flow.

What does the Status node show when it is in error, and when it recovers?

don’t know how to stimulate these events, the major problem is this, for the error I did a search and found that a frequent mistake is: nrpgio python command not running, to restore normal state I have no idea of how to proceed, I am looking for example ideas

nrgpio is a python script that runs in the background and reads/writes to the gpio pins for node-red. If it is not running then you will have to find why it is not running and fix it. There is nothing you could do in the flows, other than possibly restarting node-red or rebooting the pi.