气体浓度传感器 - 图1

python 编程:

创建实例

  • gas(port_num)
    创建gas实例,port_num 可取值为 thunbot.PORT_1, thunbot.PORT_2,thunbot.PORT_3, thunbot.PORT_4,thunbot.PORT_A,thunbot.PORT_B

    方法

  • get_gas_ratio()
    获取传感器检测到的气体浓度,气体浓度范围为:0 ~ 100。

  • set_extremum(opt_type,opt_data)
    设置传感器的最小值、最大值及复位
    | opt_type 取值 | 功能 | | :—- | :—- | | SET_MINIMUM | 设置最小值 | | SET_MAXIMUM | 设置最大值 | | RESET | 复位,恢复默认值 |

opt_data 的取值范围为:0 ~ 100。
注:opt_data的值在RESET时,不可填写
编程示范

  1. import thunbot
  2. import time
  3. g3 = thunbot.gas(thunbot.PORT_3)
  4. print("normal test")
  5. for i in range(0,20):
  6. print(g3.get_gas_ratio())
  7. time.sleep(1)
  8. print("mode test")
  9. g3.set_extremum(g3.SET_MAXIMUM,60)
  10. g3.set_extremum(g3.SET_MINIMUM,30)
  11. for i in range(0,20):
  12. print(g3.get_gas_ratio())
  13. time.sleep(1)
  14. print("reset test")
  15. g3.set_extremum(g3.RESET)
  16. for i in range(0,20):
  17. print(g3.get_gas_ratio())
  18. time.sleep(1)