Need Help with MiCS-5914 NH3 Sensor

Hi everyone,

I'm working on a project using the MiCS-5914 NH3 sensor and the SEN0567 sensor module (both sourced from Mouser.com). However, I've run into a problem—I couldn't find any working code for these sensors, whether for Arduino or any other platform.

If anyone has experience with these sensors or can share a working code snippet (in any programming language), it would be a huge help.

int sensorPin = A0;
int sensorValue = 0;

void setup()
{
  Serial.begin(9600); //Set serial baud rate to 9600 bps
}

void loop()
{
  sensorValue = analogRead(sensorPin);
  Serial.println(sensorValue);
  delay(100);
}