Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

View amrithmmh's full-sized avatar

ENigma amrithmmh

  • India
View GitHub Profile
@amrithmmh
amrithmmh / ADS1256.c
Created June 28, 2018 07:31 — forked from dariosalvi78/ADS1256.c
Simple library for ADS1256 to be used with Arduino. It does not implement the whole set of features, but can be used as a starting point for a more comprehensive library.
/* ADS1256 simple library for Arduino
ADS1256, datasheet: http://www.ti.com/lit/ds/sbas288j/sbas288j.pdf
connections to Atmega328 (UNO)
CLK - pin 13
DIN - pin 11 (MOSI)
DOUT - pin 12 (MISO)
CS - pin 10
DRDY - pin 9
RESET- pin 8 (or tie HIGH?)
import time
import serial
ser = serial.Serial( port='/dev/ttyUSB0', baudrate=250000)
if ser.isOpen():
ser.close()
ser.open()
ser.isOpen()
ser.write(("M114\r").encode())