Hat sich erledigt :))))))))))))))))))))))

hallo hallo hallo hallo hallo hallo

Honeywell ABP serie: https://sps.honeywell.com/us/en/products/sensing-and-iot/sensors/pressure-sensors/board-mount-pressure-sensors/basic-abp-series

ABPDANT015PGAA5:
ABP = Honeywell ABP serie
D = DIP package
AN = Single axial barbed port
T = liquid media
015PG = 0 ... 15 psi
A = analog output
A = 10% to 90% output range
5 = 5V sensor

Send the raw value to the Serial Monitor.

void setup()
{
  Serial.begin( 9600);
}

void loop()
{
  int rawADC = analogRead( A0);
  Serial.println( rawADC);

  delay( 250);
}

Can you show a photo with the flat corner of the sensor and tell what is connected to which pin ?
I think you have GND and 5V on one side, but I think that pin 1 = GND and pin 6 = 5V, so they can not be on the same side.

The goal is to get the sensor working. If you want to put that on a LCD display, that is the next step.

Your sensor is a type "AN":
1

Pin numbers:

pin 1 = the flat corner = GND
pin 2 = not connected
pin 3 = analog output to the Arduino board

pin 4 = not connected
pin 5 = not connected
pin 6 = 5V

That is not the same as you have.

@laura_in_action, your topic has been moved to a more suitable location on the forum. Introductory Tutorials is not for questions. Feel free to write a tutorial once you have mastered your problem :wink:

Note:
Please leave your original topic (and title) as is when your topic was solved. Now it will be difficult for others with the same problem.

This topic was automatically closed 120 days after the last reply. New replies are no longer allowed.