查看“斜不胜正灯”的源代码
←
斜不胜正灯
跳转至:
导航
,
搜索
因为以下原因,您没有权限编辑本页:
您所请求的操作仅限于这些用户组的用户使用:
用户
,labplus
您可以查看与复制此页面的源代码。
[[文件:斜不胜正灯.png|300px|缩略图|右 ]]<br /> == 概述 == 本作品可通过触发倾斜传感器改变彩色RGB灯带颜色。使用时先根据制作说明将作品组装完整,然后接上 电源(9V电池或USB供电),打开主控板开关,触发倾斜传感器即可。本作品用倾斜传感器作为输入装置, 彩色RGB灯带作为输出装置,可自行编程改变颜色、变换方式、灯带数量等。DIY动手组装,锻炼动手能 力,了解智能创意电子套件的使用,激发创新思维,增加学习乐趣。 == 使用教程 == 将灯倾斜触发后,程序控制17颗灯珠渐变颜色。灯回正后,灯带停止渐变颜色。 <br/> === <font size=3px>组装说明</font> === :{|style="background-color:#FCF8E3;color:#8A6D3B;" |-style="vertical-align:center;" |[[File:点击下载.png|30px|center]] | #[[:File:趣味台灯制作说明.rar|趣味台灯制作说明]] #[[:File:斜不胜正灯装配.rar|斜不胜正灯装配说明]] |} <br/> [[File:斜不胜正灯_装配.png]] <br/> <br/> === <font size=3px>电子模块清单</font> === {| class="wikitable" border="0" cellpadding="2" width="20%" !模块名称||数量 |- |W1控制板||x1 |- |倾斜开关||x1 |- |RGB灯带(17颗)||x1 |} === <font size=3px>电子模块连接说明</font> === {| class="wikitable" |- ! 模块 !!引脚 !! 说明 |- | 倾斜开关|| W1-9/10接口|| |- | RGB灯带(17颗)||W1-7/8接口 || |- |} === <font size=3px>Arduino程序/图形化程序</font> === <br/> {|style="background-color:#FCF8E3;color:#8A6D3B;" |-style="vertical-align:center;" |[[File:点击下载.png|30px|center]] |[[:File:Interesting_lamp_v1.2_Release.rar|斜不胜正灯程序包]] |} <br/> <pre style="color:blue"> #include "Adafruit_NeoPixel.h" #define SWITCHPIN 9 int numpixelsPin = 7; #define nusec 5 #define NUMPIXELS 20 int num; uint8_t r,g,b; uint16_t h; int led = 20; int fz=0; int flag=0; int flag1=0; int i = 0; uint16_t cnt = 0; Adafruit_NeoPixel pixels1 = Adafruit_NeoPixel(NUMPIXELS, numpixelsPin, NEO_GRB + NEO_KHZ800); void HSV2RGB(uint16_t h, float s, float v, uint8_t * r, uint8_t * g, uint8_t *b); void setup() { pinMode(numpixelsPin,OUTPUT); pinMode(SWITCHPIN,INPUT); digitalWrite(numpixelsPin,LOW); pinMode(nusec,OUTPUT); digitalWrite(nusec,HIGH); // put your setup code here, to run once: pixels1.begin(); // This initializes the NeoPixel library. for(num = 0; num < led; num++) { pixels1.setPixelColor(num, pixels1.Color(0,0,0)); // Moderately bright green color. } pixels1.show(); // This sends the updated pixel color to the hardware for(num = 0; num < led; num++) { pixels1.setPixelColor(num, pixels1.Color(128,0,0)); // Moderately bright green color. pixels1.show(); // This sends the updated pixel color to the hardware delay(65); } for(num = (led-1); num >= 0; num--) { pixels1.setPixelColor(num, pixels1.Color(0,128,0)); // Moderately bright green color. pixels1.show(); // This sends the updated pixel color to the hardware delay(65); } for(num = 0; num < led; num++) { pixels1.setPixelColor(num, pixels1.Color(0,0,128)); // Moderately bright green color. pixels1.show(); // This sends the updated pixel color to the hardware delay(65); } // Serial.begin(115200); } void loop() { if(digitalRead(SWITCHPIN)) { h += 2; if(h>360) { h=0; } HSV2RGB(h, 1.0, 1.0, &r, &g, &b); for(num = 0; num < led; num++) { pixels1.setPixelColor(num, pixels1.Color(r,g,b)); // Moderately bright green color. } pixels1.show(); // This sends the updated pixel color to the hardware digitalWrite(nusec,LOW); //ying yue delay(50); } else { for(num = 0; num < led; num++) { pixels1.setPixelColor(num, pixels1.Color(r,g,b)); // Moderately bright green color. } pixels1.show(); // This sends the updated pixel color to the hardware digitalWrite(nusec,HIGH); //ying yue delay(50); } } 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创客教育平台
工具
链入页面
相关更改
特殊页面
页面信息