Jump to content

jaya

Members
  • Posts

    4
  • Joined

  • Last visited

jaya's Achievements

Newbie

Newbie (1/4)

0

Reputation

  1. I had changed my OS to linux on Ubuntu now and trying to read the DAQ HAts on Raspberry Pis. It can't update the eeprom images
  2. I have only two thermocouple HATS and nothing on top of the GPIO. Only issue is that sudo eeproms command doesn't throw any output or error Both DAQ can work individually
  3. I have two MCC134 stacked with address 0 and 1. When i try sudo daqhats_read_eeproms, it just stays in that line forever and doesn't output anything.
  4. Hello all, When I run the below code, I get an error Board not responding. What is the fix i can use? The board is MCC134 and brand new. Any help on this is appreciated Also I couldn't read anything in the DAQ HAT manager app using Raspberry PI. import sys from daqhats import hat_list, HatIDs, mcc134 # get hat list of MCC daqhat boards board_list = hat_list(filter_by_id = HatIDs.ANY) if not board_list: print("No boards found") sys.exit() # Read and display every channel for entry in board_list: if entry.id == HatIDs.MCC_134: print("Board {}: MCC 134".format(entry.address)) board = mcc134(entry.address) for channel in range(board.info().NUM_AI_CHANNELS): value = board.a_in_read(channel) print("Ch {0}: {1:.3f}".format(channel, value)) one thermocuple connected to channel 0 physically
×
×
  • Create New...