查看“点阵显示超声波距离”的源代码
←
点阵显示超声波距离
跳转至:
导航
、
搜索
因为以下原因,您没有权限编辑本页:
您所请求的操作仅限于该用户组的用户使用:
用户
您可以查看与复制此页面的源代码。
{| style="width: 800px;" |- | <p style="color: #4F4E4E;font-size:220%">'''Sensor-Ultrasonic+点阵显示超声波距离'''</p> <br> 本示例给出了超声波传感器测得的距离在点阵上显示的方法,显示距离的单位为米,例如显示1.2,表示测得距离为1.2米 <br> <br> <p style="color: #E87E05;font-size:135%">所需硬件</p> *[[mCenter+]] *[[Sensor-Ultrasonic+]] <br> <p style="color: #E87E05;font-size:135%">电路搭建</p> 将Ultrasonic+传感器接到Hub的IIC引脚。 <br> 将mCenter+(或者用Battery、Core、Hub堆叠在一起代替mCenter+,代替后核心选择core)通过MicroUSB数据线接入电脑,核心选择core+ 5V。初次使用请参考:[[AVR核心:Getting_started/zh|Getting Started]]。 <br> <br> <p style="color: #E87E05;font-size:135%">代码</p> <source lang="cpp"> #include <Microduino_Matrix.h> #include <Microduino_Ultrasonic.h> uint8_t Addr[MatrixPix_X][MatrixPix_Y] = { {48} }; Ultrasonic Ultrasonic1(ULTRASONIC_ADDR_1); Matrix display = Matrix(Addr, TYPE_S2); uint8_t score_num[10][5] = { 0x70, 0x50, 0x50, 0x50, 0x70, 0x10, 0x10, 0x10, 0x10, 0x10, 0x70, 0x10, 0x70, 0x40, 0x70, 0x70, 0x10, 0x70, 0x10, 0x70, 0x50, 0x50, 0x70, 0x10, 0x10, 0x70, 0x40, 0x70, 0x10, 0x70, 0x70, 0x40, 0x70, 0x50, 0x70, 0x70, 0x10, 0x10, 0x10, 0x10, 0x70, 0x50, 0x70, 0x50, 0x70, 0x70, 0x50, 0x70, 0x10, 0x70, }; uint16_t Distance, Dis, lastDis; uint8_t scoreMap[8]; void dispScore(uint16_t num) { uint8_t score1, score2 , score3; uint8_t tmp_x, i, j, m, n; score1 = num / 100; score2 = (num % 100) / 10; score3 = num % 10; m = score1 / 8; n = score1 % 8; memset(scoreMap, 0, sizeof(scoreMap)); for (i = 0; i < m; i++) scoreMap[i] = 0xff; for (j = 0; j < n; j++) scoreMap[m] |= (0x80 >> j); for (i = 0; i < 5; i++) { for (j = 0; j < 4; j++) { if ((score_num[score2][i] & (0x80 >> j)) == (0x80 >> j)) scoreMap[3 + i] |= 0x80 >> j; } } for (i = 0; i < 5; i++) { for (j = 0; j < 4; j++) { if ((score_num[score3][i] & (0x80 >> j)) == (0x80 >> j)) scoreMap[3 + i] |= 0x80 >> (j + 4); } } } void updateScore() { for (uint8_t pix = 0; pix < 8; pix++) { for (uint8_t row = 0; row < 8; row++) { if ((scoreMap[pix] >> row) & 0x01) display.setLed(7 - row, pix, true); else display.setLed(7 - row, pix, false); } } } void setup() { Serial.begin(9600); Wire.begin(); display.setBrightness(80); display.clearDisplay(); if (Ultrasonic1.begin()) { //如果超声波初始化成功 Serial.println("Ultrasonic is online");//串口打印信息 } delay(2000); } void loop() { Distance = Ultrasonic1.getDistance(); Serial.println(Distance); Dis = Distance / 100; if (lastDis != Dis) { lastDis = Dis; dispScore(Dis); updateScore(); display.setLed(4, 7, true); } delay(2); } </source> <br> |} <br> [[Sensor-Ultrasonic+|返回Sensor-Ultrasonic+ 界面]]
返回至
点阵显示超声波距离
。
导航菜单
个人工具
创建账户
登录
名字空间
页面
讨论
变种
视图
阅读
查看源代码
查看历史
更多
搜索
Welcome
首页
创客大赛
大赛详情
3D打印
安装月球车
图形化编程
操控月球车
升级月球车
编程工具下载
软件下载
Arduino
Processing
Mixly
Scratch
模块套件
Microduino 102
mCookie 102
mCookie 202
mCookie 302
IBC
其他
应用套件
四轴飞行器
平衡车
小车CUBE
音乐播放器
刷卡音乐播放器
wifi气象站
彩虹音乐触摸灯
分贝检测仪
迎门汇报
LED点阵时钟
LED点阵屏幕
硬件
mCookie
Sensor
Microduino
MicroWrt
MicroNux
MicroRobot-Core
MicroRobot-CoreESP
ideaBoard
ideaBox
MicroMV
MicroAI
帮助
常见问题
帮助
工具
链入页面
相关更改
特殊页面
页面信息