Arduino unable to send readings from 200PSI Pressure Transducer to Cayenne

Hi, I am working on a project with my Arduino Uno WiFi Rev2 to send data to Cayenne from a DHT22 sensor and a 200PSI Pressure Transducer, with a DHT22 sensor is ok, but with the pressure transducer I cannot send de variable “psi” to Cayenne Dashboard, the channel 5 is on the dashboard but with 0 value, on Serial Monitor I can get the values.
Here is my code:

#define CAYENNE_DEBUG
#define CAYENNE_PRINT Serial
#include <CayenneMQTTUnoWifiRev2.h>

#include <Adafruit_Sensor.h>
#include <DHT.h>
#include <DHT_U.h>

char ssid = “mynetwork”;
char wifiPassword = “xxxxxxxxxxxxxxxxx”;

#define DHTPIN 8
#define DHTTYPE DHT22

DHT_Unified dht(DHTPIN, DHTTYPE);

uint32_t delayMS;

char username = “xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx”;
char password = “xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx”;
char clientID = “xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx”;

#define VIRTUAL_CHANNEL 2
#define ACTUATOR_PIN 2

int psi;

void setup() {
Serial.begin(9600);
Cayenne.begin(username, password, clientID, ssid, wifiPassword);

dht.begin();

}

void loop() {
Cayenne.loop();
pinMode (ACTUATOR_PIN, OUTPUT);
float sensorVoltage = analogRead(0);
int psi = ((sensorVoltage-95)/204)*43.5;
Serial.println (“PSI”);
Serial.println (psi);
delay(1000);
}

CAYENNE_OUT_DEFAULT()

{
Cayenne.virtualWrite(0, millis());

sensors_event_t event;  
dht.temperature().getEvent(&event);
Cayenne.celsiusWrite(1, event.temperature);
dht.humidity().getEvent(&event);
Cayenne.virtualWrite(3, event.relative_humidity, "rel_hum", "p");

Cayenne.virtualWrite(5, psi, "analog_sensor", "null");

}

can you share the screenshot of the serial monitor.

Hi, these is the data from serial monitor

[759] Connecting to home_wifi
[2932] Connected to WiFi
[2932] IP: 192.168.1.10
[2933] Connecting to mqtt.mydevices.com:1883
[3769] Connected
[4072] Publish: topic 4, channel 65534, value Arduino, subkey , key
[4079] Publish: topic 7, channel 65534, value 16000000, subkey , key
[4153] Publish: topic 5, channel 65534, value 1.3.0, subkey , key
[4224] Publish: topic 8, channel 65534, value WiFiNINA, subkey , key
PSI
1
[11301] Publish: topic 1, channel 0, value 11301, subkey , key
[11308] Publish: topic 1, channel 1, value NAN, subkey c, key temp
[11373] Publish: topic 1, channel 3, value NAN, subkey p, key rel_hum
[11449] Publish: topic 1, channel 5, value 0, subkey null, key analog_sensor
PSI
1
[17540] Connection ok
PSI
1
PSI
1
[29546] Publish: topic 1, channel 0, value 29546, subkey , key
[29552] Publish: topic 1, channel 1, value NAN, subkey c, key temp
[29618] Publish: topic 1, channel 3, value NAN, subkey p, key rel_hum
[29693] Publish: topic 1, channel 5, value 0, subkey null, key analog_sensor
[29775] Connection ok
PSI
1
PSI
1
[41811] Connection ok
PSI
1

Thanks