张高兴的 Windows 10 IoT 开发笔记:BH1750FVI 光照度传感器
BH1750FVI 是一款 IIC 接口的数字型光强度传感器集成电路。下面介绍一下其在 Windows 10 IoT Core 环境下的用法。
项目运行在 Raspberry Pi 2/3 上,使用 C# 进行编码。
1. 准备
包含 BH1750FVI 的传感器,这里选择的是淘宝上最多的 GY-30;Raspberry Pi 2/3 一块,环境为 Windows 10 IoT Core;公母头杜邦线 4-5 根
2. 连线
Raspberry Pi 2/3 的引脚如图

由于采用的是 IIC 通信方式,因此我们需要把 GY-30 上的 SDA 与 Pin3 相连,SCL 与 Pin5 相连。VCC 接 3.3V,GND 接地。ADD 决定了传感器的地址,将其连接至 VCC ≥ 0.7 V 的时候,地址为 0x5C,接地时为 0x23。可以不连接。
SDA - Pin3
SCL - Pin5
VCC - 3.3V
GND - GND

3. 代码
GitHub : https://github.com/ZhangGaoxing/windows-iot-demo/tree/master/BH1750FVIDemo
需要新建一个 Windows 通用 项目 ,并且添加引用 Windows IoT Extensions for the UWP

在项目中添加一个 C# 代码文件 BH1750FVI.cs,代码如下
using System;
using System.Threading.Tasks;
using Windows.Devices.I2c; namespace BH1750FVIDemo
{
/// <summary>
/// I2C Address Setting
/// </summary>
enum AddressSetting
{
/// <summary>
/// ADD Pin connect to high power level
/// </summary>
AddPinHigh = 0x5C,
/// <summary>
/// ADD Pin connect to low power level
/// </summary>
AddPinLow = 0x23
}; /// <summary>
/// The mode of measuring
/// </summary>
enum MeasurementMode
{
/// <summary>
/// Start measurement at 1 lx resolution
/// </summary>
ContinuouslyHighResolutionMode = 0x10,
/// <summary>
/// Start measurement at 0.5 lx resolution
/// </summary>
ContinuouslyHighResolutionMode2 = 0x11,
/// <summary>
/// Start measurement at 4 lx resolution
/// </summary>
ContinuouslyLowResolutionMode = 0x13,
/// <summary>
/// Start measurement at 1 lx resolution once
/// </summary>
OneTimeHighResolutionMode = 0x20,
/// <summary>
/// Start measurement at 0.5 lx resolution once
/// </summary>
OneTimeHighResolutionMode2 = 0x21,
/// <summary>
/// Start measurement at 4 lx resolution once
/// </summary>
OneTimeLowResolutionMode = 0x23
} /// <summary>
/// Setting light transmittance
/// </summary>
enum LightTransmittance
{
Fifty,
Eighty,
Hundred,
Hundred_Twenty,
Hundred_Fifty,
Two_Hundred
} class BH1750FVI
{
I2cDevice sensor;
private byte sensorAddress;
private byte sensorMode;
private byte sensorResolution = ;
private double sensorTransmittance = ; private byte registerHighVal = 0x42;
private byte registerLowVal = 0x65; /// <summary>
/// Constructor
/// </summary>
/// <param name="address">Enumeration type of AddressSetting</param>
/// <param name="mode">Enumeration type of MeasurementMode</param>
public BH1750FVI(AddressSetting address, MeasurementMode mode)
{
sensorAddress = (byte)address;
sensorMode = (byte)mode; if (mode == MeasurementMode.ContinuouslyHighResolutionMode2 || mode == MeasurementMode.OneTimeHighResolutionMode2)
{
sensorResolution = ;
}
} /// <summary>
/// Constructor
/// </summary>
/// <param name="address">Enumeration type of AddressSetting</param>
/// <param name="mode">Enumeration type of MeasurementMode</param>
/// <param name="transmittance">Enumeration type of LightTransmittance</param>
public BH1750FVI(AddressSetting address, MeasurementMode mode, LightTransmittance transmittance)
{
sensorAddress = (byte)address;
sensorMode = (byte)mode; if (mode == MeasurementMode.ContinuouslyHighResolutionMode2 || mode == MeasurementMode.OneTimeHighResolutionMode2)
{
sensorResolution = ;
} switch (transmittance)
{
case LightTransmittance.Fifty:
{
registerHighVal = 0x44;
registerLowVal = 0x6A;
sensorTransmittance = 0.5;
}
break;
case LightTransmittance.Eighty:
{
registerHighVal = 0x42;
registerLowVal = 0x76;
sensorTransmittance = 0.8;
}
break;
case LightTransmittance.Hundred:
{
registerHighVal = 0x42;
registerLowVal = 0x65;
}
break;
case LightTransmittance.Hundred_Twenty:
{
registerHighVal = 0x41;
registerLowVal = 0x7A;
sensorTransmittance = 1.2;
}
break;
case LightTransmittance.Hundred_Fifty:
{
registerHighVal = 0x41;
registerLowVal = 0x7E;
sensorTransmittance = 1.5;
}
break;
case LightTransmittance.Two_Hundred:
{
registerHighVal = 0x41;
registerLowVal = 0x73;
sensorTransmittance = ;
}
break;
}
} /// <summary>
/// Initialize BH1750FVI
/// </summary>
public async Task InitializeAsync()
{
var settings = new I2cConnectionSettings(sensorAddress);
settings.BusSpeed = I2cBusSpeed.FastMode; var controller = await I2cController.GetDefaultAsync();
sensor = controller.GetDevice(settings); sensor.Write(new byte[] { 0x01 });
sensor.Write(new byte[] { registerHighVal });
sensor.Write(new byte[] { registerLowVal });
} /// <summary>
/// Read data from BH1750FVI
/// </summary>
/// <returns>A double type contains data</returns>
public double Read()
{
byte[] readBuf = new byte[]; sensor.WriteRead(new byte[] { sensorMode }, readBuf); byte temp = readBuf[];
readBuf[] = readBuf[];
readBuf[] = temp; double result = BitConverter.ToUInt16(readBuf, ) / (1.2 * sensorResolution * sensorTransmittance); return result;
} /// <summary>
/// Cleanup
/// </summary>
public void Dispose()
{
sensor.Dispose();
}
}
}
下面解释如何使用
代码包含三个枚举类型,两个构造函数,三个方法。
第一步调用构造函数将 BH1750FVI 实例化。
第二步调用 InitializeAsync() 初始化 I2C 设备
第三步调用 Read() 读取数据,返回的是一个 double 类型的值
当需要关闭设备时,调用 Dispose()
张高兴的 Windows 10 IoT 开发笔记:BH1750FVI 光照度传感器的更多相关文章
- 张高兴的 Windows 10 IoT 开发笔记:使用 ADS1115 读取模拟信号
考虑到 Raspberry Pi 读取模拟信号是很烦人的事情,更何况是在没人玩的 Windows 10 IoT 下,所以准备正儿八经的写点东西. 需求:使用 Raspberry Pi 读取输出模拟信号 ...
- 张高兴的 Windows 10 IoT 开发笔记:使用 Lightning 中的软件 PWM 驱动 RGB LED
感觉又帮 Windows 10 IoT 开荒了,所以呢,正儿八经的写篇博客吧.其实大概半年前就想写的,那时候想做个基于 Windows 10 IoT 的小车,但树莓派原生不支持 PWM 啊.百度也搜不 ...
- 张高兴的 Windows 10 IoT 开发笔记:HC-SR04 超声波测距模块
HC-SR04 采用 IO 触发测距.下面介绍一下其在 Windows 10 IoT Core 环境下的用法. 项目运行在 Raspberry Pi 2/3 上,使用 C# 进行编码. 1. 准备 H ...
- 张高兴的 Windows 10 IoT 开发笔记:部署 ASP.NET Core 2 应用
今天是大年初二,都去走亲戚了吧,享受一下这难得的能和亲友相聚的时光.而我就不一样了,今天一回到家就又开始瞎折腾了,哈哈哈. 问题背景 最近花了点时间用 ASP.NET Core 2 写了个个人博客,中 ...
- 张高兴的 Windows 10 IoT 开发笔记:串口红外编解码模块 YS-IRTM
This is a Windows 10 IoT Core project on the Raspberry Pi 2/3, coded by C#. GitHub: https://github.c ...
- 张高兴的 Windows 10 IoT 开发笔记:无线收发芯片 nRF24L01
This is a Windows 10 IoT Core project on the Raspberry Pi 2/3, coded by C#. GitHub:https://github.co ...
- 张高兴的 Windows 10 IoT 开发笔记:FM 电台模块 KT0803L
This is a Windows 10 IoT Core project on the Raspberry Pi 2/3, coded by C#. GitHub:https://github.co ...
- 张高兴的 Windows 10 IoT 开发笔记:0.96 寸 I2C OLED
This is a Windows 10 IoT Core project on the Raspberry Pi 2/3, coded by C#. GitHub:https://github.co ...
- 张高兴的 Windows 10 IoT 开发笔记:使用 MAX7219 驱动数码管
This is a Windows 10 IoT Core project on the Raspberry Pi 2/3, coded by C#. GitHub:https://github.co ...
随机推荐
- Swing-JTable用法-入门
注:本文为学习笔记,原文为How to Use Tables,本文所有素材与代码均源于原文,可能会有部分更改. JTable是Swing中的表格控件,它的外观如下所示: 没错,excel或者acces ...
- 201521123005《java程序设计》第四周学习总结
1. 本周学习总结 1.1 尝试使用思维导图总结有关继承的知识点. 1.2 使用常规方法总结其他上课内容. ·继承(是什么,意义) -父类(被继承的类) -子类(继承父类) -多态(解决重复代码的问题 ...
- java System.currentTimeMillis()毫秒值和具体日期值互相转换
System.currentTimeMillis()与日期 间是可以相互转换的,通过 SimpleDateFormat dateformat = new SimpleDateFormat(" ...
- Scrapy爬虫框架解析
Scrapy框架解析 Scrapy框架大致包括以下几个组件:Scrapy Engine.Spiders.Scheduler.Item Pipeline.Downloader: 组件 Scrapy En ...
- Maven第二篇【Idea下使用Maven】
详情可参照详细的Maven教程-Idea环境下 值得追加的是:在修改web.xml路径的时候,那篇博文并没有给出绝对的路径-这里可能有些人不知道怎么写.我给出来参考 X:\Users\ozc\Desk ...
- Linux SSH 安装Tomcat
tomcat的安装 1. 下载tomcat 从tomcat官网(http://tomcat.apache.org/download-70.cgi)下载tomcat的压缩包apache-tomcat-7 ...
- MultipleOutputs新旧api
package MRNB_V4; import java.io.IOException; import java.util.Iterator; import org.apache.hadoop.con ...
- mybatis入门篇基——基本配置与参数说明
Mybatis 好吧这是我第一次写这种文章~如果有不足和错误之处欢迎评论,指点.今天想谈谈关于mybatis的一些基础入门知识. 进入正题~~: a.关于mybatis: 我个人觉得mybatis深得 ...
- 关于sping quartz定时执行理解与思考
转载请注明原创出处,谢谢! 一直以为自己理解spring quartz,忽然最近几天发现自己理解的不对,在4月18号的时候,我执行了一个spring quartz的计划如下: 1 0 0 */3 * ...
- iOS连续dismiss几个ViewController的方法
原文链接:http://blog.csdn.net/longshihua/article/details/51282388 presentViewController是经常会用到的展现ViewCont ...