f = Interpolation[daList]; r = FindRoot[Evaluate[f][x] - 1, {x, 570, 541, 600}] Show[Plot[{f[x], 1}, {x, 541, 600}], Graphics@Line [{{x, 0}, {x, 1}}] /. r]

Edit
With a legend:
f = Interpolation[daList]; r = FindRoot[Evaluate[f][x] - 1, {x, 570, 541, 600}] Show[Plot[{f[x], 1}, {x, 541, 600}, PlotRangePadding -> 1, Frame -> True, Axes -> False, Epilog -> Inset[Framed[Style[x /. r, Medium, Bold, Red], Background -> LightYellow], {x, 0} /. r]], Graphics[Line[{{x, -1}, {x, 1}}] /. r]]

source share