// Howdy 👋.
//
// This is where you can create powerful part automations like resistors that tell you when too much current is flowing through them
// You can also create your own flexible parts, like generics (https://docs.flux.ai/Introduction/generic-parts)
//
// If you are new to writing code in Flux make sure to check out our get started docs: https://docs.flux.ai/reference/introduction
//
// We aimport matplotlib.pyplot as plt
import matplotlib.patches as patches
# Initialize the figure and axis
fig, ax = plt.subplots(figsize=(10, 7))
# Set limits and hide axes
ax.set_xlim(0, 10)
ax.set_ylim(0, 7)
ax.axis('off')
# Power supply
ax.text(1, 6, 'VCC', fontsize=12, ha='center')
ax.plot([1, 1], [6, 4.5], 'k-') # VCC line