Skip to content

Commit 3522b7e

Browse files
committed
Updated build badge URL
1 parent 8d62afb commit 3522b7e

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

README.rst

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@ Introduction
99
:target: https://discord.gg/nBQh6qu
1010
:alt: Discord
1111

12-
.. image:: https://travis-ci.org/siddacious/Adafruit_CircuitPython_MAX31856.svg?branch=master
13-
:target: https://travis-ci.org/siddacious/Adafruit_CircuitPython_MAX31856
12+
.. image:: https://travis-ci.org/adafruit/Adafruit_CircuitPython_MAX31856.svg?branch=master
13+
:target: https://travis-ci.org/adafruit/Adafruit_CircuitPython_MAX31856
1414
:alt: Build Status
1515

1616
A CircuitPython driver for the MAX31856 Universal Thermocouple Amplifier
@@ -34,17 +34,17 @@ Usage Example
3434
import busio
3535
import digitalio
3636
import adafruit_max31856
37-
37+
3838
# create a spi object
3939
spi = busio.SPI(board.SCK, board.MOSI, board.MISO)
40-
40+
4141
# allocate a CS pin and set the direction
4242
cs = digitalio.DigitalInOut(board.D5)
4343
cs.direction = digitalio.Direction.OUTPUT
44-
44+
4545
# create a thermocouple object with the above
4646
thermocouple = adafruit_max31856.MAX31856(spi,cs)
47-
47+
4848
# print the temperature!
4949
print(thermocouple.temperature)
5050

0 commit comments

Comments
 (0)