Does anyone know how to rotate the oscilloscope AND the signal square at the same time?
This is what I have so far:
As you can see, the signal does not rotate with the oscilloscope, this is what I wrote:
\documentclass[a4paper,12pt]{article}
\usepackage[a4paper, margin=2cm]{geometry}
\usepackage[utf8]{inputenc}
\usepackage[]{circuitikzgit}
\begin{document}
\begin{center}
\begin{circuitikz}[rotate=45, transform shape]
\draw (0,0)node[oscopeshape](osc1){OC 1};
\end{circuitikz}
\end{center}
\end{document}
I have tried using \scope and rotating from the node line, but the result is the same, I think this is a bug.
Also, I have used the last release of CircuiTikz, this is were you can get it.




circuitikzis trying hard to un-rotate text and symbols in Instruments, as explained in detail in the manual, so those nodes behave differently from plain TikZ – Rmano Jan 05 '20 at 17:00