使用湿度传感器库
var mag7 = require("mag7"); var hd= require("humidity");
打开设备
var h = hd.open(mag7.A1);
读取湿度值
var value = h.read();
关闭设备
h.close();