查看“场景-模板”的源代码
←
场景-模板
跳转至:
导航
,
搜索
因为以下原因,您没有权限编辑本页:
您所请求的操作仅限于这些用户组的用户使用:
用户
,labplus
您可以查看与复制此页面的源代码。
[[文件:嘘寒问暖_ico.png|400px|缩略图|右 ]]<br /> == 概述 == 本作品可实现自动检测水杯温度,并通过RGB灯的颜色直观反映水杯温度的高低。使用时先根据制作说明 将作品组装完整,然后接上电源(9V电池或USB供电),打开主控板开关,将水杯放置在作品中间的温度传 感器探头上方即可。当温度高时,RGB灯亮红色;温度低时,亮蓝色;温度适中时,亮绿色。DIY动手组 装,锻炼动手能力,了解智能创意电子套件的使用,激发创新思维,增加学习乐趣。 == 使用教程 == 当水杯放置在色温杯垫上,温度感应探头测量水杯温度,并通过灯颜色反应水杯温度。当水温43℃以上,全红;当水温在43~33℃之间,红绿渐变色;当水温33~18℃之间,绿蓝渐变色;当水温18℃以下,全蓝; <br/> === <font size=3px>组装说明</font> === [http://wiki.labplus.cn/images/9/93/%E5%98%98%E5%AF%92%E9%97%AE%E6%9A%96%E8%A3%85%E9%85%8D.pdf 嘘寒问暖装配说明下载 ] [[File:嘘寒问暖 装配说明.png]] <br/> <br/> === <font size=3px>电子模块清单</font> === {| class="wikitable" border="0" cellpadding="2" width="20%" !模块名称||数量 |- |w1主控板||x1 |- |温度传感器||x1 |- |RGB-LED灯|| x4 |} === <font size=3px>电子模块连接说明</font> === {| class="wikitable" |- ! 模块 !!引脚 !! 说明 |- | 温度传感器模块 || W1-I2C接口|| |- | RGB—LED模块x4 ||W1-3/11接口 ||4个模块串联,注意信号方向,输出接口连接至下模块输入接口 |- |} === <font size=3px>Arduino程序</font> === [[文件:http://wiki.labplus.cn/images/4/4a/M0002_Tcup_SW_V1_4_Release.rar|嘘寒问暖Arduino程序包下载]] <pre style="color:blue"> /************************************************************************** Copyright (C), 2017- , File name: 色温杯垫 Author: Tangliufeng Version: v1.4 Date: Description: Others: Function List: 1. 2. History: 1. Date: 2017/10/10 Author: tangliufeng Modification: 更换新RGB模块 2. ... ****************************************************************************/ #include <Wire.h> #include <avr/wdt.h> #include "TemperatureNTC.h" #include "Adafruit_NeoPixel.h" #define PIXEL_PIN 3 #define PIXEL_COUNT 4 int Temperature; uint8_t _R, _G, _B; int i = 1; uint8_t TEMP; uint8_t humidity; uint8_t SW; long time_out; long time_out1; long time_out2; uint16_t h, color1; float s, v; Adafruit_NeoPixel strip = Adafruit_NeoPixel(PIXEL_COUNT, PIXEL_PIN, NEO_GRB + NEO_KHZ800); void setup() { s = 1.0; v = 0.5; h = 0; Serial.begin(9600); strip.setBrightness(50); strip.begin(); start(); strip.clear(); strip.show(); } void loop() { Temperature = readTemperatureNTC(A2); Serial.print("Temper:"); Serial.println(Temperature); if (Temperature >= 44) //大于44度变红色 { color1 = 0; } else if (Temperature <= 33) { color1 = map(Temperature, 18, 33, 240, 200);; //18~33度 变蓝色 } else { color1 = map(Temperature, 35, 43, 120, 0); //35~43度 变红色 } HSV2RGB(color1, s, v, _R, _G, _B); for (uint8_t i = 0; i < PIXEL_COUNT; i++) { strip.setPixelColor(i, _R, _G, _B); } strip.show(); } void start() { char x = 3; while (x--) { for (uint8_t i = 0; i < PIXEL_COUNT; i++) { strip.setPixelColor(i, 16, 0, 0); } strip.show(); delay(300); for (uint8_t i = 0; i < PIXEL_COUNT; i++) { strip.setPixelColor(i, 0, 16, 0); } strip.show(); delay(300); for (uint8_t i = 0; i < PIXEL_COUNT; i++) { strip.setPixelColor(i, 0, 0, 16); } strip.show(); delay(300); } } void HSV2RGB(uint16_t H, float S, float V, uint8_t &R, uint8_t &G, uint8_t &B) { uint8_t hi; float f, p, q, t; hi = (uint8_t)(H / 60); f = (float)H / 60 - hi; p = V * (1 - S); q = V * (1 - f * S); t = V * (1 - (1 - f) * S); switch (hi) { //0: {r,g,b} = {v,t,p} case 0: R = V * 255; G = t * 255; B = p * 255; break; //1: {r,g,b} = {q,v,p} case 1: R = q * 255; G = V * 255; B = p * 255; break; //2: {r,g,b} = {p,v,t} case 2: R = p * 255; G = V * 255; B = t * 255; break; //3: {r,g,b} = {p,q,v} case 3: R = p * 255; G = q * 255; B = V * 255; break; //4: {r,g,b} = {t,p,v} case 4: R = t * 255; G = p * 255; B = V * 255; break; //5: {r,g,b} = {v,p,q} case 5: R = V * 255; G = p * 255; B = q * 255; break; default: break; } } </pre> == FAQ == == 版本历史记录 == {| border="1" cellspacing="0" align="left" cellpadding="0" width="60%" style="text-align:center;" |- style="text-align:center;background-color:#6fa8dc;color:#fffff;" !width="10%"|Version !!width="15%"| Date !! <small>新增/删除/修复</small> |- | || || style="text-align:left"| |}
返回至
场景-模板
。
导航菜单
个人工具
登录
命名空间
页面
讨论
变种
视图
阅读
查看源代码
查看历史
更多
搜索
导航
首页
软件
Labplus软件
mPython软件
Mixly集成盛思版
mpython_conn
教学套件
创客初级实验箱
创客初级实验箱进阶版
创客中级实验箱
创客中级实验箱Ⅱ
人工智能交互实验箱
桌面机器人
乐动魔盒
可穿戴作品电子套件
创意触摸板套装
乐动魔块中级套装
乐动魔块高级套装
bot:bit
编程造物套装
逻辑造物套装
人工智能套装
物联网套装
高中信息技术套装
掌控板初级套装
初中信息技术材料包
开源硬件教学套装
冲锋舟
造物
Arduino
乐动魔块(旧版)
Blue:bit电子积木
MicroBit系列
掌控板系列
AI摄像头V1.0
AI摄像头V2.0
1956
掌控魔盒
乐动掌控
乐动魔块
互动作品
森林奇遇记
创客森林
创客乐园
物联网演示系统
博物馆防盗演示实验系统
梦想舞台演示实验系统
智能家居演示实验系统
智能教室演示实验系统
智能停车场演示实验系统
DIY-木板系列
嘘寒问暖
硬币存款机
吼一声试试
斜不胜正灯
时光葫芦
旋转转盘
越光宝盒
治愈系萌犬
光明使者
避障机械车
DIY-亚克力系列
情绪机器人
创意七彩灯
温湿度机器人
留言机
游龙戏灯
三色时钟
光影精灵
光影时钟
智能应用系列
LED眼镜
32x16 RGB LED点阵屏
DIY环境温湿度显示系统
DIY创客空间访客记录仪
其他
金属结构件套装
耗材存取管理柜
更多
课程资源
常见问题解答
Arduino语法参考手册
链接
Labplus官网
STEAM创客教育平台
工具
链入页面
相关更改
特殊页面
页面信息