Skip to content

Commit f69a6b0

Browse files
Added issue template, fixed grammar, patched wierd register read bug
1 parent 0d7a631 commit f69a6b0

File tree

3 files changed

+20
-1
lines changed

3 files changed

+20
-1
lines changed

ISSUE_TEMPLATE.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
### Subject of the issue
2+
Describe your issue here.
3+
4+
### Your workbench
5+
* What development board or microcontroller are you using?
6+
* What version of hardware or breakout board are you using?
7+
* How is the breakout board wired to your microcontroller?
8+
* How is everything being powered?
9+
* Are there any additional details that may help us help you?
10+
11+
### Steps to reproduce
12+
Tell us how to reproduce this issue. Please post stripped down example code demonstrating your issue.
13+
14+
### Expected behavior
15+
Tell us what should happen
16+
17+
### Actual behavior
18+
Tell us what happens instead

library.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ version=1.0.1
33
author=SparkFun Electronics <techsupport@sparkfun.com>
44
maintainer=Fischer Moseley <fischer.moseley@sparkfun.com>
55
sentence=Driver for Microchip's MCP9600 Thermocouple Amplifier.
6-
paragraph=The <a href="https://www.microchip.com/wwwproducts/en/MCP9600">MCP9600</a> is a integrated thermocouple amplifier featuring a typical accuracy of ±0.5°C and a maximum accuracy of ±1.5°C, with support for many thermocouple types, conversion modes, and a configurable exponential moving average filter.
6+
paragraph=The <a href="https://www.microchip.com/wwwproducts/en/MCP9600">MCP9600</a> is an integrated thermocouple amplifier featuring a typical accuracy of ±0.5°C and a maximum accuracy of ±1.5°C, with support for many thermocouple types, conversion modes, and a configurable exponential moving average filter.
77
category=Sensors
88
url=https://www.sparkfun.com/products/15508
99
architectures=*

src/SparkFun_MCP9600.cpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,7 @@ uint16_t MCP9600::deviceID(){
5353
}
5454

5555
bool MCP9600::checkDeviceID(){
56+
deviceID(); //this is here because the first read doesn't seem to work, but the second does. No idea why :/
5657
return (highByte(deviceID()) == DEV_ID_UPPER);
5758
}
5859

0 commit comments

Comments
 (0)