Skip to main content

This is gp2y10 driver for HaaS Python. HaaS Python is forked from micropython.

Project description

HaaS Python介绍

HaaS Python是阿里云IoT团队最新研发的一套低代码编程框架,兼容MicroPython编程规范,依托HaaS平台软硬件积木提供AI、支付、蓝牙配网、云连接、UI等物联网场景常用的能力,从而解决了物联网应用开发难的问题。有了Python轻应用框架,物联网编程不再局限于专业软件开发人员,一般的技术员也可以快速实现复杂的物联网需求。 更多HaaS Python介绍和开发资料见HaaS Python官网,创意案例, 硬件积木

HaaS Python is a set of low-code programming frameworks newly developed by Alibaba Cloud IoT team. It is compatible with MicroPython programming specifications. It relies on the hardware and software building blocks of the HaaS platform to provide capabilities commonly used in IoT scenarios such as AI, payment, Bluetooth network configuration, cloud connection, and UI. Solve the difficult problem of IoT application development. With the Python light application framework, IoT programming is no longer limited to professional software developers, and general technicians can quickly implement complex IoT requirements. For more HaaS Python introduction and development materials, see HaaS Python official website, Creative Case, Hardware Building Blocks

安装方法

Download the firmware corresponding to the development board at HaaS Python website and complete the firmware burning

  • 在开发板上运行以下命令完成安装和使用,如果您在使用过程中遇到问题,欢迎在github上向我们提交issue,我们的工程师会及时解答

Run the following commands on the development board to complete the installation and use. If you encounter problems during use, please submit an issue to us on github, Our engineers will answer in time

import upip
upip.install("haas-python-gp2y10")
import haas-python-gp2y10

粉尘传感器 - GP2Y10

一、产品简介

   GP2Y10粉尘传感器用于检测非常细的空气漂浮颗粒物,主要用于空气净化系统中,传感器外观引脚如下图所示。

引脚定义

  • GND:地
  • VCC:5V
  • LED:输入信号
  • OUT:模拟信号输出

二、技术参数

工作电压:5V~7V
工作电流:20mA
最小粒子检出值:0.8微米
灵敏度:0.5V/(0.1mg/m3) 工作温度:-10°C~65°C
存储温度:-20°C~80°C
模块重量:15g
板子尺寸:46mm x 30mm x 17.6mm

三、软件接口

GP2Y10粉尘传感器HaaS Python驱动:下载地址

GP2Y10(adcObj,gpioObj) - 创建粉尘传感器驱动对象


  • 函数原型

gp2y10Obj = GP2Y10(adcObj,gpioObj)

  • 参数说明
参数 类型 必选参数? 说明
adcObj ADC 传感器OUT配置引脚
调用此函数前需确保adcObj对象已经处于open状态
gpioObj GPIO 传感器LED配置引脚
调用此函数前需确保gpioObj对象已经处于open状态
  • 返回值

GP2Y10对象成功,返回GP2Y10对象;GP2Y10对象创建失败,抛出Exception

  • 示例代码
import gp2y10
from driver import GPIO,ADC

gpioDev = GPIO()
gpioDev.open("gp2y10led")
adcDev = ADC()
adcDev.open("gp2y10out")
gp2y10Obj=gp2y10.GP2Y10(adcDev,gpioDev)
print("gp2y10Obj inited!")
  • 输出
gp2y10Obj inited!

getVoltage() - 获取当前adc值


  • 函数功能:

获取当前adc值

  • 函数原型:

GP2Y10.getVoltage()

  • 参数说明:

  • 返回值:

返回当前adc值

  • 示例:
import gp2y10
from driver import GPIO,ADC
import utime

gpioDev = GPIO()
gpioDev.open("gp2y10led")
adcDev = ADC()
adcDev.open("gp2y10out")
gp2y10Obj=gp2y10.GP2Y10(adcDev,gpioDev)
print("gp2y10Obj inited!")
while True:
    readvalue = gp2y10Obj.getVoltage()
    print("value is ", readvalue)
    utime.sleep(1)
  • 输出
gp2y10Obj inited!
value is 8
value is 11
value is 13
value is 9
value is 13

四、接口案例

此使用实例在board.json中定义了名为GP2Y10的ADC和GPIO两种类型的对象。在Python脚本中获取粉尘传感器的adc值并打印在日志中。

  • 案例代码
{
    "name": "board-name",
    "version": "1.0.0",
    "io": {
      "gp2y10out": {
        "type": "ADC",
        "port": 0,
        "atten": 1,
        "width": 3,
        "sampling": 12000000
      },
      "gp2y10led": {
        "type": "GPIO",
        "port": 26,
        "dir": "output",
        "pull": "pullup"
      }
    }
}
import gp2y10
from driver import GPIO,ADC
import utime

gpioDev = GPIO()
gpioDev.open("gp2y10led")
adcDev = ADC()
adcDev.open("gp2y10out")
gp2y10Obj=gp2y10.GP2Y10(adcDev,gpioDev)
print("gp2y10Obj inited!")
while True:
    readvalue = gp2y10Obj.getVoltage()
    print("value is ", readvalue)
    utime.sleep(1)
  • 输出
gp2y10Obj inited!
value is 8
value is 11
value is 13
value is 9
value is 13

五、工作原理

其原理是粉尘传感器中心有个孔,可以让空气自由流过,定向发射LED光,通过检测经过空气中灰尘折射过后的光线来判断灰尘的含量。传感器装置中有一个红外发光二极管和光电晶体管,对角布置成允许其检测到在空气中的灰尘发射光。传感器内部电路图如下所示:

参考文献及购买链接

[1] 粉尘传感器
[2] 购买链接

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

haas-python-gp2y10-0.0.8.tar.gz (7.9 kB view hashes)

Uploaded Source

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page