查看“Joystick Lantern”的源代码
←
Joystick Lantern
跳转至:
导航
、
搜索
因为以下原因,您没有权限编辑本页:
您所请求的操作仅限于该用户组的用户使用:
用户
您可以查看与复制此页面的源代码。
{{Language| Joystick lantern}} {| style="width: 800px;" |- | ==Objective== To control the lantern's color and brightness through Joystick. ==Principle== ==Equipment== {|class="wikitable" |- |Module||Number||Function |- |[[Microduino-CoreUSB]]||1||Core board |- |[[Microduino-Sensorhub]]||1||Sensor pin board |- | [[Microduino-Colorled]]||1||Colored light |- | [[Microduino-Joystick]]||1||Joystick sensor |- | [[Microduino-BM]]||1||Battery management |} [[File: Joystick_colorled.jpg|600px|center|thumb]] ==Hardware Buildup== * Setup 1:Connect CoreUSB to the computer, open program example, then select the right board and download program via serial port. [https://github.com/Microduino/Microduino_Tutorials/tree/master/MCookie_Tutorial/Joystick_led Joystick_led] *Setup 2:Stack CoreUSB and Sensorhub. [[File:CoreUSB_Ble_Sensorhub.jpg|600px|center|thumb]] *Setup 3:Connect the colored light to the D6 pin of Sensorhub and Joystick sensor to A0 and A1. [[file:Microduino-sensorhub_rule.JPG|thumb|800px|center]] [[File:Joystick_colorled_all.jpg|600px|center|thumb]] ==Software Debugging== Code Description * Color pre-set: " color_m[9][3]" (With nine kinds of color and users can change according to personal needs.) *Joystick controls pin description: <source lang="cpp"> #define JoystickX_PIN A1 #define JoystickY_PIN A0 </source> *Select color on the X-axis <source lang="cpp"> if (sensorValueY <= 10) { delay(500); num++; if (num > 8) num = 0; } else if (sensorValueY > 800) { delay(500); num--; if (num < 0) num = 8; } </source> *Select brightness on the Y-axis. <source lang="cpp"> if (sensorValueX <= 10) { delay(10); color_l++; if (color_l > 255) color_l = 255; } else if (sensorValueX > 800) { delay(10); color_l--; if (color_l < 0) color_l = 0; } </source> *Light display <source lang="cpp"> colorWipe(strip.Color(map(color_l, val_min, val_max, 0, color_m[num][0]), map(color_l, val_min, val_max, 0, color_m[num][1]), map(color_l, val_min, val_max, 0, color_m[num][2]))); </source> ==Result== Choose color on the X-axis and brightness on the Y-axis. You can also build a beautiful shell with LEGO. ==Video== |}
该页面使用的模板:
模板:Language
(
查看源代码
)
模板:Nmbox
(
查看源代码
)
返回至
Joystick Lantern
。
导航菜单
个人工具
创建账户
登录
名字空间
页面
讨论
变种
视图
阅读
查看源代码
查看历史
更多
搜索
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
帮助
常见问题
帮助
工具
链入页面
相关更改
特殊页面
页面信息