欢迎访问ic37.com |
会员登录 免费注册
发布采购

MCP9808T-E/MS 参数 Datasheet PDF下载

MCP9808T-E/MS图片预览
型号: MCP9808T-E/MS
PDF下载: 下载PDF文件 查看货源
内容描述: 0.5A ° C最大精度数字温度传感器 [0.5°C Maximum Accuracy Digital Temperature Sensor]
分类和应用: 传感器换能器温度传感器输出元件PC
文件页数/大小: 52 页 / 1124 K
品牌: MICROCHIP [ MICROCHIP ]
 浏览型号MCP9808T-E/MS的Datasheet PDF文件第39页浏览型号MCP9808T-E/MS的Datasheet PDF文件第40页浏览型号MCP9808T-E/MS的Datasheet PDF文件第41页浏览型号MCP9808T-E/MS的Datasheet PDF文件第42页浏览型号MCP9808T-E/MS的Datasheet PDF文件第44页浏览型号MCP9808T-E/MS的Datasheet PDF文件第45页浏览型号MCP9808T-E/MS的Datasheet PDF文件第46页浏览型号MCP9808T-E/MS的Datasheet PDF文件第47页  
MCP9808  
Software License Agreement  
The software supplied herewith by Microchip Technology Incorporated (the “Company”) is intended and supplied to you, the  
Company’s customer, for use solely and exclusively with products manufactured by the Company.  
The software is owned by the Company and/or its supplier, and is protected under applicable copyright laws. All rights are reserved.  
Any use in violation of the foregoing restrictions may subject the user to criminal sanctions under applicable laws, as well as to civil  
liability for the breach of the terms and conditions of this license.  
THIS SOFTWARE IS PROVIDED IN AN “AS IS” CONDITION. NO WARRANTIES, WHETHER EXPRESS, IMPLIED OR STATU-  
TORY, INCLUDING, BUT NOT LIMITED TO, IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICU-  
LAR PURPOSE APPLY TO THIS SOFTWARE. THE COMPANY SHALL NOT, IN ANY CIRCUMSTANCES, BE LIABLE FOR  
SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES, FOR ANY REASON WHATSOEVER.  
APPENDIX A: SOURCE CODE  
/********************************************************************  
FileName:  
Processor:  
Complier:  
Company:  
I2C.c  
PIC18 Microcontrollers  
Microchip C18 (for PIC18) or C30 (for PIC24)  
Microchip Technology, Inc.  
#include <p18cxxx.h> // This code is developed for PIC18F2550  
//It can be modified to be used with any PICmicro with MSSP module  
/** PRIVATE PROTOTYPES *********************************************/  
void i2c_init(void);  
void i2c_start(void);  
void i2c_repStart(void);  
void i2c_stop(void);  
unsigned char i2c_write( unsigned char i2cWriteData );  
unsigned char i2c_read( unsigned char ack );  
/********************************************************************  
*
*
*
*
*
Function Name: i2c_init  
Return Value:  
Parameters:  
Description:  
void  
Enable SSP  
This function sets up the SSP1 module on a  
PIC18CXXX device for use with a Microchip I2C  
********************************************************************/  
void i2c_init(void) {  
TRISBbits.TRISB0 = 1;  
TRISBbits.TRISB1 = 1;  
// Digital Output (make it input only when reading data)  
// Digital Output  
SSPCON1 = 0x28;  
SSPCON2 = 0x00;  
SSPSTAT = 0x80;  
// enable I2C Master mode  
// clear control bits  
// disable slew rate control; disable SMBus  
SSPADD = 19;  
// set baud rate to 100 kHz (Fosc = 48 MHz)  
PIR1bits.SSPIF = 0;  
PIR2bits.BCLIF = 0;  
SSPCON2bits.SEN = 0;  
// force idle condition  
}
© 2011 Microchip Technology Inc.  
DS25095A-page 45  
 复制成功!