const int WIND_PIN = A0; const int TEMP_PIN = A1; void setup() { Serial.begin(115200); pinMode(WIND_PIN, INPUT); pinMode(TEMP_PIN, INPUT); delay(10000); // Allow the sensor to warm up. } void loop() { float windVoltage = analogRead(WIND_PIN) * 5.0f / 1023.0f; float temperatureVoltage = analogRead(TEMP_PIN) * 5.0f / 1023.0f; Serial.print("wind="); Serial.print(windVoltage, 3); Serial.print(" V, temp-out="); Serial.println(temperatureVoltage, 3); delay(500); }