“电压传感器”的版本间的差异

来自Labplus盛思维基百科
跳转至: 导航搜索
使用教程
第35行: 第35行:
 
=== <font size=3px>掌控板</font> ===
 
=== <font size=3px>掌控板</font> ===
  
<source lang="javascript">
+
<syntaxhighlight lang="Python" line='line'>
// SyntaxHighlighter makes your code snippets beautiful without tiring your servers.
+
from mpython import *                  # 导入mpython
// http://alexgorbatchev.com
+
import bluebit                          # 导入bluebit 模块
var setArray = function(elems) {
 
    this.length = 0;
 
    push.apply(this, elems);
 
    return this;
 
}
 
</source>
 
  
<source lang="C++">
+
meter=bluebit.DelveBit(0x60)            # 实例模块,根据实际I2C地址,修改
int LED_PIN=13;
 
  
void setup () {                    // 初始化副程式,程式起始時僅執行一次
+
while True:
     pinMode (LED_PIN, OUTPUT);     // 以數位輸出方式啟用Pin13
+
    value = meter.common_measure()     # 测量
}
+
     print("measure: %f" %value)
 +
     sleep_ms(200)
  
void loop () {                    // loop副程式,重複不斷執
 
    digitalWrite (LED_PIN, HIGH);  // 打開LED(發光二極管)
 
    delay (1000);                  // 等待一秒,delay內含數值1000,代表延遲1000毫秒,即一秒。
 
    digitalWrite (LED_PIN, LOW);  // 關閉LED
 
    delay (1000);                  // 等待一秒
 
}                                  // loop副程式結束
 
</source>
 
  
<syntaxhighlight lang="Python" line='line'>
 
def quickSort(arr):
 
less = []
 
pivotList = []
 
more = []
 
if len(arr) <= 1:
 
return arr
 
else:
 
pass
 
 
</syntaxhighlight>
 
</syntaxhighlight>
  

2019年4月18日 (四) 09:09的版本

blue:bit-电压传感器

概述

用于检测量电压的I2C通讯类的传感器

技术参数

  • 工作电压:VCC 3.3-5V
  • I2C数字信号输出
  • 电压范围 : -25~25V
  • 解析度: 0.01V
  • 精度: 1%
  • 模块尺寸:24x46x7.5mm

引脚定义/接口说明

VCC 电源
SDA I2C数据
SCL I2C时钟
GND
  • 拨动开关,可选择模块的I2C地址,用于避免与其他I2C设备地址冲突。注意,重新选择I2C地址后,需要重新上电才能生效!

使用教程

Arduino

掌控板

from mpython import *                   # 导入mpython
import bluebit                          # 导入bluebit 模块

meter=bluebit.DelveBit(0x60)            # 实例模块,根据实际I2C地址,修改

while True:
    value = meter.common_measure()      # 测量
    print("measure: %f" %value)
    sleep_ms(200)

microbit

应用案例

FAQ

版本历史记录

Version Date 新增/删除/修复