Michael

Results 4 issues of Michael

I know this is probably an unwelcome question, but do you have any instructions for a beginner?

Is there more detailed documentation? I am kind of a newbie on python and I think this library could help with the issue I am working on but I have...

I am trying to use this library on a rpi pico: ```py cs = machine.Pin(22, machine.Pin.OUT) spi = machine.SPI(0, baudrate=1000000, polarity=0, phase=0, bits=8, firstbit=machine.SPI.MSB, sck=machine.Pin(18), mosi=machine.Pin(19), miso=machine.Pin(16)) sd = sdcard.SDCard(spi,...

All I am trying to do is get a reading: from cal import Old_tables from alicat import FlowMeter flow = FlowMeter(port="/dev/ttyUSB0") value = flow.get() print(str(value)) and I get the error...