OpenEdv-开源电子网

 找回密码
 立即注册
正点原子全套STM32/Linux/FPGA开发资料,上千讲STM32视频教程免费下载...
查看: 6394|回复: 13

求STM8S103F3P6操作SHT10程序

[复制链接]

72

主题

179

帖子

0

精华

高级会员

Rank: 4

积分
615
金钱
615
注册时间
2014-5-12
在线时间
158 小时
发表于 2017-11-20 13:24:49 | 显示全部楼层 |阅读模式
50金钱
刚接触STM8S  读个温湿度传感器整了好几天  前面51 430 32都用过、、、、都成功了  
就这个不行  求大神帮忙  谢谢

最佳答案

查看完整内容[请看2#楼]

#include "IOSTM8S103F3.h" //#include //Keil library (is used for _nop()_ operation) #include //Keil library #include //Keil library typedef union { unsigned int i; float f; } value; //---------------------------------------------------------------------------------- // modul-var //---------------------------------------------------------------------------------- enum {TEMP,HU ...
正点原子逻辑分析仪DL16劲爆上市
回复

使用道具 举报

72

主题

179

帖子

0

精华

高级会员

Rank: 4

积分
615
金钱
615
注册时间
2014-5-12
在线时间
158 小时
 楼主| 发表于 2017-11-20 13:24:50 | 显示全部楼层
#include "IOSTM8S103F3.h"
//#include <intrins.h> //Keil library (is used for _nop()_ operation)
#include <math.h> //Keil library
#include <stdio.h> //Keil library



typedef union
{ unsigned int i;
float f;
} value;
//----------------------------------------------------------------------------------
// modul-var
//----------------------------------------------------------------------------------
enum {TEMP,HUMI};

#define DS_CLK_H()        PB_ODR_ODR4=1
#define DS_CLK_L()        PB_ODR_ODR4=0
#define DS_DATA_H()       PB_ODR|= 0x20
#define DS_DATA_L()       PB_ODR&=~0x20
#define DS_DATA_STATE     PB_IDR_IDR5
#define SHT_DATA_IN       {PB_DDR&=~ 0x20B_CR1&=~ 0x20B_CR2|=0x00;}
#define SHT_DATA_OUT      {PB_DDR|=0x20B_CR1|=0x20B_CR2|=0x00;}//PB_CR1|=0x20

#define noACK 0
#define ACK 1
//adr command r/w
#define STATUS_REG_W 0x06 //000 0011 0
#define STATUS_REG_R 0x07 //000 0011 1
#define MEASURE_TEMP 0x03 //000 0001 1
#define MEASURE_HUMI 0x05 //000 0010 1
#define RESET 0x1e //000 1111 0

/*******************************************
函数名称:SHT_Init()
功    能:温湿度传感器IO初始化
参    数:无
返回值  :无
********************************************/
void SHT_Init(void)
{
   // P3SEL &=~(BIT6 + BIT7);
   // P3OUT |= (BIT6 + BIT7);//SDA SCK输出
   // SHT_DATA_HIGH;
   // SHT_SCK_HIGH;
   // SHTConnectionRst();//connection reset sequence
   PB_DDR|=0x10;
   PB_CR1|=0x10;
   PB_CR2|=0x00;
   SHT_DATA_OUT;
   DS_DATA_H();
   DS_CLK_H();
   //s_connectionreset();
}

void Delay(long nCount)
{
  /* Decrement nCount value */
  while (nCount != 0)
  {
    nCount--;
  }
}




//----------------------------------------------------------------------------------
char s_write_byte(unsigned char value)
//----------------------------------------------------------------------------------
// writes a byte on the Sensibus and checks the acknowledge
{
unsigned char i,error=0;
for (i=0x80;i>0;i/=2) //shift bit for masking
{ if (i & value) DS_DATA_H(); //masking value with i , write to SENSI-BUS
else DS_DATA_L();
DS_CLK_H(); //clk for SENSI-BUS
Delay(2);Delay(2);Delay(2); //pulswith approx. 5 us
DS_CLK_L();
}
DS_DATA_H(); //release DATA-line
SHT_DATA_IN;
DS_CLK_H(); //clk #9 for ack
error=DS_DATA_STATE; //check ack (DATA will be pulled down by SHT11)
DS_CLK_L();
Delay(2);
SHT_DATA_OUT;
  return error; //error=1 in case of no acknowledge
}

//----------------------------------------------------------------------------------
char s_read_byte(unsigned char ack)
//----------------------------------------------------------------------------------
// reads a byte form the Sensibus and gives an acknowledge in case of "ack=1"
{
unsigned char i,val=0;
SHT_DATA_OUT;
DS_DATA_H(); //release DATA-line
SHT_DATA_IN;
for (i=0x80;i>0;i/=2) //shift bit for masking
{ DS_CLK_H(); //clk for SENSI-BUS
if (DS_DATA_STATE) val=(val | i); //read bit
DS_CLK_L();
}
SHT_DATA_OUT;
//DS_DATA_STATE=!ack; //in case of "ack==1" pull down DATA-Line
if(ack==1)
                                {
             
                                DS_DATA_L();
                                }
                                        else
                                        {
                                        DS_DATA_H();
                                 }  
//if(ack==1)  DS_DATA_L();
Delay(2);
DS_CLK_H(); //clk #9 for ack
Delay(2);Delay(2);Delay(2); //pulswith approx. 5 us
DS_CLK_L();
Delay(2);Delay(2);Delay(2);
//DS_DATA_H(); //release DATA-line
return val;
}

//----------------------------------------------------------------------------------
void s_transstart(void)
//----------------------------------------------------------------------------------
// generates a transmission start
// _____ ________
// DATA: |_______|
// ___ ___
// SCK : ___| |___| |______
{
DS_DATA_H();
DS_CLK_L(); //Initial state
Delay(2);
DS_CLK_H();
Delay(2);
DS_DATA_L();
Delay(2);
DS_CLK_L();
Delay(2);Delay(2);Delay(2);
DS_CLK_H();
Delay(2);
DS_DATA_H();
Delay(2);
DS_CLK_L();
}

//----------------------------------------------------------------------------------
void s_connectionreset(void)
//----------------------------------------------------------------------------------
// communication reset: DATA-line=1 and at least 9 SCK cycles followed by transstart
// _____________________________________________________ ________
// DATA: |_______|
// _ _ _ _ _ _ _ _ _ ___ ___
// SCK : __| |__| |__| |__| |__| |__| |__| |__| |__| |______| |___| |______
{
unsigned char i;
DS_DATA_H(); DS_CLK_L(); //Initial state
for(i=0;i<9;i++) //9 SCK cycles
{ DS_CLK_H();
DS_CLK_L();
}
s_transstart(); //transmission start
}

//----------------------------------------------------------------------------------
char s_measure(unsigned char *p_value, unsigned char *p_checksum, unsigned char mode)
//----------------------------------------------------------------------------------
// makes a measurement (humidity/temperature) with checksum
{
unsigned error=0;
unsigned int i;
s_transstart(); //transmission start
switch(mode){ //send command to sensor
case TEMP : error+=s_write_byte(MEASURE_TEMP); break;
case HUMI : error+=s_write_byte(MEASURE_HUMI); break;
default : break;
}
SHT_DATA_IN;
for (i=0;i<65535;i++) if(DS_DATA_STATE==0) break; //wait until sensor has finished the measurement
if(DS_DATA_STATE) error+=1; // or timeout (~2 sec.) is reached
*(p_value) =s_read_byte(ACK); //read the first byte (MSB)
*(p_value+1)=s_read_byte(ACK); //read the second byte (LSB)
*p_checksum =s_read_byte(noACK); //read checksum
SHT_DATA_OUT;
return error;
}

//----------------------------------------------------------------------------------------
void calc_sth11(float *p_humidity ,float *p_temperature)
//----------------------------------------------------------------------------------------
// calculates temperature [C] and humidity [%RH]
// input : humi [Ticks] (12 bit)
// temp [Ticks] (14 bit)
// output: humi [%RH]
// temp [C]
{ const float C1=-4.0; // for 12 Bit
const float C2= 0.0405; // for 12 Bit
const float C3=-0.0000028; // for 12 Bit
const float T1=0.01; // for 14 Bit @ 5V
const float T2=0.00008; // for 14 Bit @ 5V
float rh=*p_humidity; // rh: Humidity [Ticks] 12 Bit
float t=*p_temperature; // t: Temperature [Ticks] 14 Bit
float rh_lin; // rh_lin: Humidity linear
float rh_true; // rh_true: Temperature compensated humidity
float t_C; // t_C : Temperature [C]

//t_C=t*0.01 – 40; //calc. Temperature from ticks to [C]
t_C=t*0.01;
t_C=t_C-40;
rh_lin=C3*rh*rh + C2*rh + C1; //calc. Humidity from ticks to [%RH]
rh_true=(t_C-25)*(T1+T2*rh)+rh_lin; //calc. Temperature compensated humidity [%RH]
if(rh_true>100)rh_true=100; //cut if the value is outside of
if(rh_true<0.1)rh_true=0.1; //the physical possible range
*p_temperature=t_C; //return temperature [C]
*p_humidity=rh_true; //return humidity[%RH]
}


//----------------------------------------------------------------------------------
void main()
//----------------------------------------------------------------------------------
// sample program that shows how to use SHT11 functions
// 1. connection reset
// 2. measure humidity [ticks](12 bit) and temperature [ticks](14 bit)
// 3. calculate humidity [%RH] and temperature [C]
// 4. calculate dew point [C]
// 5. print temperature, humidity, dew point
{
  value humi_val,temp_val;
unsigned char error,checksum;
unsigned int i;
SHT_Init();
s_connectionreset();


        while(1)
        {
          //s_transstart();
          //s_write_byte(0x03);
           error=0;
           error+=s_measure((unsigned char*) &humi_val.i,&checksum,HUMI); //measure humidity
           error+=s_measure((unsigned char*) &temp_val.i,&checksum,TEMP); //measure temperature
           if(error!=0) s_connectionreset(); //in case of an error: connection reset
           else
           { humi_val.f=(float)humi_val.i; //converts integer to float
             temp_val.f=(float)temp_val.i; //converts integer to float
             calc_sth11(&humi_val.f,&temp_val.f); //calculate humidity, temperature
             Delay(2);
           }
           printf("temp:%3.1f humi:%3.1f",temp_val.f,humi_val.f);
//----------wait approx. 0.8s to avoid heating up SHTxx------------------------------
for (i=0;i<40000;i++); //(be sure that the compiler doesn’t eliminate this line!)
//-----------------------------------------------------------------------------------
        }
         



                               


}
回复

使用道具 举报

62

主题

902

帖子

0

精华

论坛元老

Rank: 8Rank: 8

积分
3555
金钱
3555
注册时间
2016-1-8
在线时间
543 小时
发表于 2017-11-20 13:42:11 | 显示全部楼层
SHT30的我到是有
回复

使用道具 举报

50

主题

1805

帖子

0

精华

论坛元老

Rank: 8Rank: 8

积分
6661
金钱
6661
注册时间
2016-5-29
在线时间
909 小时
发表于 2017-11-20 14:10:16 | 显示全部楼层
要怎么才可以帮到你.
回复

使用道具 举报

4

主题

133

帖子

0

精华

中级会员

Rank: 3Rank: 3

积分
408
金钱
408
注册时间
2016-1-27
在线时间
63 小时
发表于 2017-11-20 14:28:38 | 显示全部楼层
本帖最后由 liarlaker 于 2017-11-20 14:31 编辑

几个建议,仅供参考:1、确保传感器是好的,这一点可以用之前调好的板子接上试一下;
2、代码里的数据类型,要注是是否匹配,如字符型到整形,计算前先转换类型
3、管脚高低电平输出是否正常,输入功能是否正常
回复

使用道具 举报

72

主题

179

帖子

0

精华

高级会员

Rank: 4

积分
615
金钱
615
注册时间
2014-5-12
在线时间
158 小时
 楼主| 发表于 2017-11-20 15:37:46 | 显示全部楼层
多谢 我按你说的再试试
回复

使用道具 举报

72

主题

179

帖子

0

精华

高级会员

Rank: 4

积分
615
金钱
615
注册时间
2014-5-12
在线时间
158 小时
 楼主| 发表于 2017-11-20 15:38:13 | 显示全部楼层
操作系统 发表于 2017-11-20 14:10
要怎么才可以帮到你.

最好做过的给个参考程序
回复

使用道具 举报

72

主题

179

帖子

0

精华

高级会员

Rank: 4

积分
615
金钱
615
注册时间
2014-5-12
在线时间
158 小时
 楼主| 发表于 2017-11-21 17:18:01 | 显示全部楼层
liarlaker 发表于 2017-11-20 14:28
几个建议,仅供参考:1、确保传感器是好的,这一点可以用之前调好的板子接上试一下;
2、代码里的数据类型 ...

多谢 不知为啥管脚输出 必须都加上拉电阻才行 不知道是不是最好的解决方案 但是出数了 也正常  非常感谢
回复

使用道具 举报

4

主题

133

帖子

0

精华

中级会员

Rank: 3Rank: 3

积分
408
金钱
408
注册时间
2016-1-27
在线时间
63 小时
发表于 2017-11-22 08:37:47 | 显示全部楼层
新生 发表于 2017-11-21 17:18
多谢 不知为啥管脚输出 必须都加上拉电阻才行 不知道是不是最好的解决方案 但是出数了 也正常  非常感谢

如果是STM8的话,带T的I/O,内部是开漏输出,必须加上拉电阻才能输出高电平。如果不是带T的I/O,使能内部上拉就可以了。STM8S003F的话,应该是11,12管脚是带T的接口,具体你看下datasheet里I/O管脚定义
Mob:150 0032 0863
QQ:276204039
回复

使用道具 举报

0

主题

1

帖子

0

精华

新手入门

积分
13
金钱
13
注册时间
2018-3-22
在线时间
0 小时
发表于 2018-3-24 11:58:27 | 显示全部楼层
看看这个代码,好强大啊,头痛了
回复

使用道具 举报

0

主题

3

帖子

0

精华

新手入门

积分
13
金钱
13
注册时间
2019-5-12
在线时间
3 小时
发表于 2019-8-15 17:41:28 | 显示全部楼层

你好,可以分享下SHT30  stm8驱动的代码么?谢谢
回复

使用道具 举报

62

主题

902

帖子

0

精华

论坛元老

Rank: 8Rank: 8

积分
3555
金钱
3555
注册时间
2016-1-8
在线时间
543 小时
发表于 2019-8-16 09:32:53 | 显示全部楼层
远尧 发表于 2019-8-15 17:41
你好,可以分享下SHT30  stm8驱动的代码么?谢谢

我只有STM32的
回复

使用道具 举报

0

主题

3

帖子

0

精华

新手入门

积分
13
金钱
13
注册时间
2019-5-12
在线时间
3 小时
发表于 2019-8-16 14:21:57 | 显示全部楼层

嗯,STM32的我已经找到资料了,在移植中
回复

使用道具 举报

0

主题

1

帖子

0

精华

新手入门

积分
18
金钱
18
注册时间
2020-9-2
在线时间
5 小时
发表于 2020-9-2 15:51:27 | 显示全部楼层

可以分享一下32的SHT10的程序嘛~
回复

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则



关闭

原子哥极力推荐上一条 /2 下一条

正点原子公众号

QQ|手机版|OpenEdv-开源电子网 ( 粤ICP备12000418号-1 )

GMT+8, 2024-11-22 12:10

Powered by OpenEdv-开源电子网

© 2001-2030 OpenEdv-开源电子网

快速回复 返回顶部 返回列表