Skip to content

Instantly share code, notes, and snippets.

@angajime
angajime / plotter.py
Created September 24, 2021 09:58
Plotter for Keithley
import pyvisa
import time
import matplotlib.pyplot as plt
from random import randrange
import csv
# Initialize the Keithley and create some useful variables
multimeter = pyvisa.ResourceManager().open_resource('GPIB0::1::INSTR')# Connect to the Keithley and set it to a variable named multimeter.
multimeter.write(":ROUTe:CLOSe (@101)") # Set the Keithley to measure channel 1 of card 1
multimeter.write(":SENSe:FUNCtion 'RESistance'") # Set the Keithley to measure temperature.
@angajime
angajime / gitcookbook.md
Last active August 29, 2015 14:21
Git Cookbook

GIT COOKBOOK

INFO

What is this?

Why?

LINKS