I am trying to build up a PID control block with anti windup
\tikzstyle{controller} = [draw, fill=blue!20, rectangle,
minimum height=3.5em, minimum width=6em]
\tikzstyle{subblock} = [draw, fill=blue!5, rectangle,
minimum height=3.5em, minimum width=6em]
\tikzstyle{pidblocks} = [draw, fill=green!5, rectangle,
minimum height=3.5em, minimum width=6em, text width= 6em]
\tikzstyle{transformation} = [draw, fill=red!5, rectangle,
minimum height=3.5em, minimum width=6em]
\tikzstyle{filter} = [draw, fill=green!10, rectangle,
minimum height=3.5em, minimum width=6em]
\tikzstyle{block} = [draw, fill=windblue!20, rectangle,
minimum height=3.5em, minimum width=6em]
\tikzstyle{sum} = [draw, circle, node distance=1.5cm, inner sep=0.15cm]
\tikzstyle{disturbance} = [draw=none, node distance=1.5cm, line width=0pt]
\tikzstyle{input} = [coordinate]
\tikzstyle{output} = [coordinate]
\begin{figure}[!h]
\centering
\begin{tikzpicture}[auto, scale=0.8, node distance=3cm,>=latex', every
node/.style={transform shape}]
% We start by placing the blocks
\node [input, name=input1] {};
\node [sum, right of=input1] (sumofinputerror) {};
\node [pidblocks, right= 5cm of sumofinputerror, yshift=1.5cm] (kp) {P\hfill$k_p e(t)$};
\node [pidblocks, right= 5cm of sumofinputerror, yshift=-1.5cm] (ki) {I\hfill$k_i \int{e(t)dt}$};
\node [sum, left = 0cm of $(sumofinputerror)!0.5!(ki.west)$, xshift=0.2cm, yshift=-0.8cm] (sumofantiwindup) {};
\node [sum, right = 2cm of $(kp.east)!0.5!(ki.east)$] (controlsum) {};
\node [pidblocks, right of= controlsum] (antiwindup) {};
\draw [->] (input1) -- node[name=inputerror] {$y_{ref}(t)$} (sumofinputerror);
%\draw [->] (sumofinputerror) -| ($(sumofinputerror)!0.5!(kp.west)$);
\draw [->] (sumofinputerror) -| (sumofantiwindup);
\draw [->] (sumofantiwindup) -- (ki);
\draw [->] (ki) -| node[pos=0.95]{$+$}(controlsum);
\draw [->] (kp) -| (controlsum);
\end{tikzpicture}
\label{fig:torque_pid_block}
\caption{Individual pitch and trailing edge flap control block.}
\end{figure}

Instead of the ANTI-WINDUP Symbol I would like to insert the symbol like as follow

