Consider the following minimal example in with TikZ circuit library
\documentclass{article}
\usepackage{tikz}
\usetikzlibrary{circuits.ee.IEC}
\begin{document}
\begin{tikzpicture} [circuit ee IEC,>=latex]
\draw (0,0) to [bulb] (3,0);
\end{tikzpicture}
\end{document}
Is it possible to assign a name to this bulb, say (B). And reuse this point like for example:
\draw let \p1=(B.output) in (B.output) -- (\x1,-2);
