My electrical circuit contains a push button (I took for the drawing a normally open): in the documentation, I saw that an anchor was possible for such tip switches
So I tried using it to see but the following code gives me an error "Package PGF Math Error : Unknown fonction tip in (tip).
Is it because tip is not an anchor or is it because I am misusing it?
\documentclass[border=2mm]{standalone}
\usepackage[siunitx, european, straightvoltages, cute inductors]{circuitikz}
\begin{document}
\begin{circuitikz}
\draw (0,0) to[nopb, name=S] (2,0);
\draw [->, red, very thick] ($(S.tip)+(0.5,0)$) --++(-0.5,0);
\end{circuitikz}
\end{document}
Thanks for your help
