

The AS6031_ST is a low-power, high-performance analog sensor interface developed by ScioSense. It is designed to interface with various analog sensors, such as temperature and pressure sensors, and provides integrated signal conditioning for accurate and reliable measurements. The AS6031_ST is particularly well-suited for portable and battery-operated devices due to its low power consumption and compact design.








The AS6031_ST offers robust performance and flexibility for a wide range of applications. Below are its key technical specifications:
| Parameter | Value |
|---|---|
| Supply Voltage (VDD) | 1.8V to 3.6V |
| Operating Current | 100 µA (typical) |
| Standby Current | 1 µA (typical) |
| Input Signal Range | 0V to VDD |
| Output Signal Range | 0V to VDD |
| Operating Temperature | -40°C to +85°C |
| Signal Conditioning | Integrated (amplification, filtering) |
| Sensor Types Supported | Resistive, capacitive, and voltage-output sensors |
| Communication Interface | Analog output |
| Package Type | 16-pin QFN (3mm x 3mm) |
The AS6031_ST is housed in a 16-pin QFN package. Below is the pin configuration and description:
| Pin Number | Pin Name | Description |
|---|---|---|
| 1 | VDD | Power supply input (1.8V to 3.6V) |
| 2 | GND | Ground connection |
| 3 | IN+ | Positive input for the sensor signal |
| 4 | IN- | Negative input for the sensor signal |
| 5 | OUT | Analog output signal |
| 6 | NC | No connection (leave unconnected) |
| 7 | NC | No connection (leave unconnected) |
| 8 | NC | No connection (leave unconnected) |
| 9 | NC | No connection (leave unconnected) |
| 10 | NC | No connection (leave unconnected) |
| 11 | NC | No connection (leave unconnected) |
| 12 | NC | No connection (leave unconnected) |
| 13 | NC | No connection (leave unconnected) |
| 14 | NC | No connection (leave unconnected) |
| 15 | NC | No connection (leave unconnected) |
| 16 | NC | No connection (leave unconnected) |
Note: Pins labeled as "NC" should not be connected to any signal or power line.
The AS6031_ST is designed to be easy to integrate into a variety of circuits. Below are the steps and considerations for using the component effectively:
Power Supply:
Sensor Connection:
Output Signal:
Bypass Capacitor:
Signal Conditioning:
The AS6031_ST can be connected to an Arduino UNO for reading and processing the analog output signal. Below is an example of how to interface the AS6031_ST with an Arduino UNO:
// Define the analog input pin connected to the AS6031_ST OUT pin
const int sensorPin = A0;
void setup() {
// Initialize serial communication for debugging
Serial.begin(9600);
}
void loop() {
// Read the analog value from the AS6031_ST
int sensorValue = analogRead(sensorPin);
// Convert the analog value to a voltage (assuming 5V reference)
float voltage = sensorValue * (5.0 / 1023.0);
// Print the voltage to the serial monitor
Serial.print("Sensor Voltage: ");
Serial.print(voltage);
Serial.println(" V");
// Add a small delay for stability
delay(500);
}
Note: If the Arduino UNO operates at 5V, ensure that the output signal from the AS6031_ST does not exceed 5V. Use a voltage divider if necessary.
No Output Signal:
Noisy Output Signal:
Output Signal Out of Range:
High Power Consumption:
Q1: Can the AS6031_ST interface with digital sensors?
A1: No, the AS6031_ST is designed for analog sensors. For digital sensors, a different interface IC would be required.
Q2: What types of sensors are compatible with the AS6031_ST?
A2: The AS6031_ST supports resistive, capacitive, and voltage-output sensors.
Q3: Can the AS6031_ST operate at 5V?
A3: No, the maximum supply voltage for the AS6031_ST is 3.6V. Exceeding this voltage may damage the component.
Q4: Is external signal conditioning required?
A4: No, the AS6031_ST includes integrated signal conditioning, so no external amplification or filtering is needed.
Q5: What is the typical application of the AS6031_ST?
A5: It is commonly used in temperature and pressure sensing applications, especially in portable and battery-operated devices.