From a18fa27c5bdb7cc7469831b69559b6dbe483a752 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Antonio=20V=C3=A1zquez?= Date: Wed, 18 Oct 2017 18:43:47 +0200 Subject: [PATCH 1/5] sensors: Add LM75CIM temperature sensor --- library/sensors.dcm | 6 ++++++ library/sensors.lib | 33 +++++++++++++++++++++++++++++++++ 2 files changed, 39 insertions(+) diff --git a/library/sensors.dcm b/library/sensors.dcm index 83dc0f37..dcecfcdd 100644 --- a/library/sensors.dcm +++ b/library/sensors.dcm @@ -414,6 +414,12 @@ K digital temperature sensor F http://www.ti.com/lit/ds/symlink/lm73.pdf $ENDCMP # +$CMP LM75CIM +D Digital Temperature Sensor & Thermal Watchdog +K Temperature sensor +F http://www.ti.com/lit/ds/symlink/lm75b.pdf +$ENDCMP +# $CMP LMT84DCK D Analog temperature sensor, NTC, 0.4C accuracy, -5.5mV/C, -50C to +150C, 1.5 to 5.5V, SC-70-5 package K temperature sensor thermistor ntc diff --git a/library/sensors.lib b/library/sensors.lib index 9432e3a4..b4e65daa 100644 --- a/library/sensors.lib +++ b/library/sensors.lib @@ -1057,6 +1057,39 @@ X SMBDAT 6 -600 100 100 R 50 50 1 1 B ENDDRAW ENDDEF # +# LM75CIM +# +DEF LM75CIM U 0 40 Y Y 1 F N +F0 "U" -250 450 50 H V C CNN +F1 "LM75CIM" 0 450 50 H V L CNN +F2 "Housings_SOIC:SOIC-8_3.9x4.9mm_Pitch1.27mm" 0 0 50 H I C CNN +F3 "" 0 0 50 H I C CNN +$FPLIST + SOIC*8*3.9x4.9mm*Pitch1.27mm* +$ENDFPLIST +DRAW +A -5 125 25 1 1799 0 1 10 N 20 125 -30 125 +C -5 -100 50 0 1 10 F +S -300 400 300 -400 0 1 10 f +S 20 -75 -30 0 0 1 10 F +P 2 0 1 10 -30 25 -5 25 N +P 2 0 1 10 -30 50 -5 50 N +P 2 0 1 10 -30 75 -5 75 N +P 2 0 1 10 -30 100 -5 100 N +P 2 0 1 10 -30 125 -30 0 N +P 2 0 1 10 -30 125 -5 125 N +P 2 0 1 10 20 125 20 0 N +X SDA 1 -400 100 100 R 50 50 1 1 B +X SCL 2 -400 0 100 R 50 50 1 1 I +X O.S. 3 -400 -100 100 R 50 50 1 1 C +X GND 4 0 -500 100 U 50 50 1 1 W +X A2 5 400 -100 100 L 50 50 1 1 I +X A1 6 400 0 100 L 50 50 1 1 I +X A0 7 400 100 100 L 50 50 1 1 I +X +Vs 8 0 500 100 D 50 50 1 1 W +ENDDRAW +ENDDEF +# # LMT84DCK # DEF LMT84DCK U 0 30 Y Y 1 F N From 38241f679863ccf1073bf1527f0d108e3042987c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Antonio=20V=C3=A1zquez?= Date: Thu, 19 Oct 2017 09:52:52 +0200 Subject: [PATCH 2/5] sensors: Rename LM75CIM to LM75C --- library/sensors.dcm | 2 +- library/sensors.lib | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/library/sensors.dcm b/library/sensors.dcm index dcecfcdd..2d0c7623 100644 --- a/library/sensors.dcm +++ b/library/sensors.dcm @@ -414,7 +414,7 @@ K digital temperature sensor F http://www.ti.com/lit/ds/symlink/lm73.pdf $ENDCMP # -$CMP LM75CIM +$CMP LM75C D Digital Temperature Sensor & Thermal Watchdog K Temperature sensor F http://www.ti.com/lit/ds/symlink/lm75b.pdf diff --git a/library/sensors.lib b/library/sensors.lib index b4e65daa..58cf316f 100644 --- a/library/sensors.lib +++ b/library/sensors.lib @@ -1057,11 +1057,11 @@ X SMBDAT 6 -600 100 100 R 50 50 1 1 B ENDDRAW ENDDEF # -# LM75CIM +# LM75C # -DEF LM75CIM U 0 40 Y Y 1 F N +DEF LM75C U 0 40 Y Y 1 F N F0 "U" -250 450 50 H V C CNN -F1 "LM75CIM" 0 450 50 H V L CNN +F1 "LM75C" 0 450 50 H V L CNN F2 "Housings_SOIC:SOIC-8_3.9x4.9mm_Pitch1.27mm" 0 0 50 H I C CNN F3 "" 0 0 50 H I C CNN $FPLIST From 02b36704c60b5fcb68dafa6d18260bd7ec4ab6f5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Antonio=20V=C3=A1zquez?= Date: Thu, 19 Oct 2017 09:55:46 +0200 Subject: [PATCH 3/5] sensors: LM75C update description --- library/sensors.dcm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/library/sensors.dcm b/library/sensors.dcm index 2d0c7623..ac5721a4 100644 --- a/library/sensors.dcm +++ b/library/sensors.dcm @@ -415,7 +415,7 @@ F http://www.ti.com/lit/ds/symlink/lm73.pdf $ENDCMP # $CMP LM75C -D Digital Temperature Sensor & Thermal Watchdog +D Digital Temperature Sensor & Thermal Watchdog, SOIC-8 and VSSOP-8 K Temperature sensor F http://www.ti.com/lit/ds/symlink/lm75b.pdf $ENDCMP From 547985632efd381bdfe0471f3673db4d1be63600 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Antonio=20V=C3=A1zquez?= Date: Thu, 19 Oct 2017 09:56:23 +0200 Subject: [PATCH 4/5] sensors: LM75C update footprint filters --- library/sensors.lib | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/library/sensors.lib b/library/sensors.lib index 58cf316f..5bae4e8c 100644 --- a/library/sensors.lib +++ b/library/sensors.lib @@ -1062,10 +1062,11 @@ ENDDEF DEF LM75C U 0 40 Y Y 1 F N F0 "U" -250 450 50 H V C CNN F1 "LM75C" 0 450 50 H V L CNN -F2 "Housings_SOIC:SOIC-8_3.9x4.9mm_Pitch1.27mm" 0 0 50 H I C CNN +F2 "" 0 0 50 H I C CNN F3 "" 0 0 50 H I C CNN $FPLIST - SOIC*8*3.9x4.9mm*Pitch1.27mm* + SOIC*3.9x4.9mm*Pitch1.27mm* + VSSOP*3.0x3.0mm*Pitch0.65mm* $ENDFPLIST DRAW A -5 125 25 1 1799 0 1 10 N 20 125 -30 125 From 55102f14d20ae8ee2d1117adc7a315c69348c0fc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Antonio=20V=C3=A1zquez?= Date: Thu, 19 Oct 2017 09:58:40 +0200 Subject: [PATCH 5/5] sensors: Add LM75B as an alias --- library/sensors.dcm | 6 ++++++ library/sensors.lib | 1 + 2 files changed, 7 insertions(+) diff --git a/library/sensors.dcm b/library/sensors.dcm index ac5721a4..62a491ba 100644 --- a/library/sensors.dcm +++ b/library/sensors.dcm @@ -414,6 +414,12 @@ K digital temperature sensor F http://www.ti.com/lit/ds/symlink/lm73.pdf $ENDCMP # +$CMP LM75B +D Digital Temperature Sensor & Thermal Watchdog with LP on I2C and bus fault timeout, SOIC-8 and VSSOP-8 +K Temperature sensor +F http://www.ti.com/lit/ds/symlink/lm75b.pdf +$ENDCMP +# $CMP LM75C D Digital Temperature Sensor & Thermal Watchdog, SOIC-8 and VSSOP-8 K Temperature sensor diff --git a/library/sensors.lib b/library/sensors.lib index 5bae4e8c..494fb7ac 100644 --- a/library/sensors.lib +++ b/library/sensors.lib @@ -1064,6 +1064,7 @@ F0 "U" -250 450 50 H V C CNN F1 "LM75C" 0 450 50 H V L CNN F2 "" 0 0 50 H I C CNN F3 "" 0 0 50 H I C CNN +ALIAS LM75B $FPLIST SOIC*3.9x4.9mm*Pitch1.27mm* VSSOP*3.0x3.0mm*Pitch0.65mm*