I found this question which suggests making a multiplexer symbol with this path:
(0,0) -- (1,-0.5) -- (1,-1.25) -- (1.3,-1.25) -- (1,-1.25)-- (1,-2) -- (0,-2.5) --
(0,-1.75) -- (-0.3,-1.75) -- (0,-1.75) -- (0,-0.75) -- (-0.3,-0.75) -- (0,-0.75) --
(0,0)
The answer suggests doing this to use it as a symbol:
\documentclass{article}
\usepackage{tikz}
\newcommand\multiplexer[1][1]{%
\begin{tikzpicture}[scale=#1]
\draw (0,0) -- (1,-0.5) -- (1,-1.25) -- (1.3,-1.25) -- (1,-1.25)-- (1,-2) -- (0,-2.5) -- (0,-1.75) -- (-0.3,-1.75) -- (0,-1.75) -- (0,-0.75) -- (-0.3,-0.75) -- (0,-0.75) -- (0,0);
\end{tikzpicture}
}
\begin{document}
\multiplexer[0.2]
This is a symbol: \multiplexer
\end{document}

I would like to use a symbol like this as a node shape, and if possible, like that, that the inputs and outputs can easily be connected.
I saw Creating node shapes, but that requires a lot of familiarity with PGF which I don't have. Isn't there another way or a workaround to somehow use this path as a shape?

