Half way there...
I found this on YouTube as a great start point:
https://www.youtube.com/watch?v=YkIiRbI4PlcThese are the original connections:
2 headpins for the probe with 2 wires cable (A1, +5V).
3 headpins for connections with Arduino. The 22K resistance goes from the probe A1 to the 3th pinhead creating the GND pin for Arduino. For Arduino we get +5v, A1 (or other analog pin) and GND.
Video refers to 'Sketch file in Comments', but I couldn't find it so I recreated it from what I could see on screen.
I've taken that as a start point and tweaked a shade.
I now have the Arduino detecting water. Its outputting to the Serial Monitor for testing, and setting an output pin high when water is detected.
This is the 'sensor' made from two header pins:

This is the sensor test...

And this is the Serial Monitor output. Reading of '0' is open sensor, very small reading is my fingers across the sensor, over 100 is sensor dipped in water.

This is the code so far:
int probe = A1; // Bilge Probe pin
int level = 0; // Detected Water Level
int AIN2 = 12; // AIN2 Telemetry Trigger pin
int levelT = 10; // Set threshold above which triggers AIN2 (Prevent False positives)
void setup()
{
Serial.begin(9600); // Include Serial Monitor for Testing
pinMode(probe, INPUT); // Set Probe Pin as Bilge Input
pinMode(AIN2, OUTPUT); // Set AIN2 Pin to output to Rx S.Port
}
void loop(){
{
delay(1000); // Adds a 1 sec pause for easier monitor visibility
level = analogRead(probe); // Detection on probe pin
Serial.print("Reading Now = ");
Serial.println(level);
}
if (level > levelT){ // If water present voltage will increase on probe pin
Serial.println("---- > Water in the Bilge");
digitalWrite(AIN2, HIGH); // If Voltage on probe is > 0, set AIN2 pin to 5v
}
if (level <= levelT){
Serial.println("----- > No Water in the Bilge");
digitalWrite(AIN2, LOW); // If Voltage on probe is 0, set AIN2 pin to 0v
}
}
I've made changes to Tx Telemetry to detect when AIN2 pin goes high so that's next step to test, there's an option to detect the 'highest' voltage on the AIN2 pin within OpenTX, I'm going to use that as if a small amount of water is in the bilge, it may not always cover the sensor, so once triggered the Tx will keep announcing til a telemetry reset. Plan is to use the Rx S.Port power supply for the Arduino mainly to avoid ground issues, I'm going to get this connected up, then test the telemetry.
Regards to all
David.