Difference between revisions of "ECE 110/Fall 2022/Lab Supplements"

From PrattWiki
Jump to navigation Jump to search
(Clarifications)
(Lab 3)
Line 119: Line 119:
  
 
=== Relevant Resources ===
 
=== Relevant Resources ===
* Tinkercad web site: [https://www.tinkercad.com/ https://www.tinkercad.com/]
 
* Arduino web website: [https://www.arduino.cc/ https://www.arduino.cc/]
 
** Support page: [https://support.arduino.cc/hc/en-us https://support.arduino.cc/hc/en-us]
 
** If statement page: [https://www.arduino.cc/reference/en/language/structure/control-structure/if/ https://www.arduino.cc/reference/en/language/structure/control-structure/if/]
 
 
* Gradescope web site: [https://www.gradescope.com/ https://www.gradescope.com/]
 
* Gradescope web site: [https://www.gradescope.com/ https://www.gradescope.com/]
* [https://www.pololu.com/file/0J748/FSR400Series-PD-13.pdf FSR Data Sheet]
 
 
* EGRWiki pages:
 
* EGRWiki pages:
** [[ECE_110/Equipment/Breadboards]]
+
** [[Root_Mean_Square]]
 
** [[Resistor_Color_Codes]]
 
** [[Resistor_Color_Codes]]
 
** [[ECE_110/Equipment/Keysight_EDU33211A]] Waveform/Function Generator
 
** [[ECE_110/Equipment/Keysight_EDU33211A]] Waveform/Function Generator
 
** [[ECE_110/Equipment/Keysight_DSOX1202A]] Digital Oscilloscope
 
** [[ECE_110/Equipment/Keysight_DSOX1202A]] Digital Oscilloscope
 +
** [[ECE 110/Equipment/Keysight 34460A]] Multimeter
 
** [[Examples/Req]] Equivalent resistance and voltage division examples
 
** [[Examples/Req]] Equivalent resistance and voltage division examples
** [[ECE 110/Equipment/Built in RGB LED]]
+
<!--
* Parallax Pages
 
** [https://learn.parallax.com/tutorials/robot/shield-bot/robotics-board-education-shield-arduino Robotics with the BOE Shield for Arduino]
 
 
* Circuit Drawing Tools
 
* Circuit Drawing Tools
 
** CircuiTikz: [https://www.overleaf.com/learn/latex/CircuiTikz_package https://www.overleaf.com/learn/latex/CircuiTikz_package]
 
** CircuiTikz: [https://www.overleaf.com/learn/latex/CircuiTikz_package https://www.overleaf.com/learn/latex/CircuiTikz_package]
Line 139: Line 133:
 
** MultiSim: [https://www.multisim.com/ https://www.multisim.com/]
 
** MultiSim: [https://www.multisim.com/ https://www.multisim.com/]
 
** XCircuit: [http://opencircuitdesign.com/xcircuit/ http://opencircuitdesign.com/xcircuit/]
 
** XCircuit: [http://opencircuitdesign.com/xcircuit/ http://opencircuitdesign.com/xcircuit/]
 +
-->
 
</div>
 
</div>

Revision as of 18:53, 10 September 2022

Lab 0

Typographical/Other Errors

None yet!

Clarifications

None yet!

Relevant Resources

Lab 1

Typographical/Other Errors

None yet!

Clarifications

None yet!

Relevant Resources

Lab 2

Typographical/Other Errors

None yet!

Clarifications

None yet!

Relevant Resources

Lab 3

Typographical/Other Errors

None yet!

Clarifications

Resistor Table Codes

The following $$\LaTeX$$ code was used in the lab handout to make the four example tables for resistors. Note that the command:

\usepackage[dvipsnames]{xcolor}

needs to be in the preamble to define specialty colors like Goldenrod. Also, the \strut command is used to produce an unprinted character that is slightly larger than any letter in the font. Without it, the colorboxes go slightly above the tallest ascender in the word and slightly below the deepest descender in a word.

\begin{center}
    \begin{tabular}{|c|cccc|} \hline
    Resistor & 1st & 2nd & 3rd & 4th\\ \hline
    43 $\Omega$ & yellow & orange & black & gold\\ \hline
    \end{tabular}
\end{center}
or
\begin{center}
    \begin{tabular}{|c|cccc|} \hline
    Resistor & 1st & 2nd & 3rd & 4th\\ \hline
    43 $\Omega$ & \colorbox{yellow}{~\strut ~} & \colorbox{orange}{~\strut ~} & \colorbox{black}{~\strut ~} & \colorbox{Goldenrod}{~\strut ~}\\ \hline
    \end{tabular}
\end{center}
or
\begin{center}
    \begin{tabular}{|c|cccc|} \hline
    Resistor & 1st & 2nd & 3rd & 4th\\ \hline
    43 $\Omega$ & \color{yellow}yellow\color{black} & \color{orange}orange\color{black} & black & \color{Goldenrod}gold\color{black}\\ \hline
    \end{tabular}
\end{center}
or
\begin{center}
    \begin{tabular}{|c|cccc|} \hline
    Resistor & 1st & 2nd & 3rd & 4th\\ \hline
    43 $\Omega$ & \colorbox{yellow}{\strut yellow} & \colorbox{orange}{\strut orange} & \colorbox{black}{\color{white}\strut black\color{black}} & \colorbox{Goldenrod}{\strut gold}\\ \hline
    \end{tabular}
\end{center}

Relevant Resources