小言_互联网的博客

如何基于 SDK 快速开发一款IoT App 控制智能灯(iOS 版)

393人阅读  评论(0)

背景:

 

科技在不断进步,越来越多的智能家居产品和服务进入到人们的日常生活中。智能灯是一款常见的智能设备,安装智能灯后,用户可以使用手机 App 轻松调整室内颜色和亮度,设置不同的照明场景来轻松创造出温暖、放松、有趣或者鼓舞人心的室内空间。

Android版请参考:《如何基于SDK快速开发一款IoT App控制智能灯泡(Android版)》

RGB 5 路智能灯介绍

 

包含功能:

一路灯

二路灯

三路灯

四路灯

五路灯

亮度 色温+亮度 HSV 亮度+HSV 色温+亮度+HSV

 

五路灯有白光和彩光是 2 种模式切换,不可同时启用。

 

RGB 色彩模型

RGB(Red、Green、Blue)色彩模式是一种面向硬件的色彩模型,显示系统都采用RGB颜色模型来进行图像显示。RGB色彩模型属于加法混色原理,每种原色的数值越高,色彩就越亮,RGB都是0时是黑色,都是255时是白色。

RGB色彩模型表示直接,但是RGB数值和色彩的三属性没有直接的联系,不能揭示色彩之间的关系。

HSV 色彩模型

HSV 色彩模式是一种面向用户感官的色彩模型,侧重与色彩表示。这是根据人的视觉系统对亮度的敏感度要强于色彩值这个生理特性而提出的颜色模型。它比 RGB 更接近人们对彩色的感知经验。非常直观地表达颜色的色调、鲜艳程度和明暗程度,方便进行颜色的对比。

HSV(Hue、Saturation、Value)分别对应色相、饱和度、明度。

  • 色相 H:用角度度量,取值范围为0°~360°,从红色开始按照逆时针方向计算,红色为0°,绿色为120°,蓝色为240°,黄色为60°,青色为180°,品红为300°,对应于绕圆柱的中心轴的角度。
  • 饱和度 S:表示色彩的纯度,对应于离圆柱的中心轴的距离。数值越高颜色则深而艳,数值越低则颜色逐渐变灰,取值范围为0.0~1.0,白色的S=0。
  • 明度 V:表示颜色的明亮程度。取值范围为0.0(黑色)~1.0(白色)。对应于绕圆柱的中心轴的高度,轴取值为自底部的黑色V=0到顶部的白色V=1。

 

 

 

 

基础准备

基于 SDK 开发一个智能灯 App 的时候,需要做下面准备:

  • 创建 App SDK
  • 集成 SDK
  • 注册和登录
  • 创建家庭
  • 设备配网
  • 设备控制

 

具体参考

功能点介绍

 

功能点是对产品功能的抽象表示,是具体智能设备功能的抽象,用于描述产品功能及其参数。

  • 功能点 ID:功能点的编码。设备与云端的功能数据通过功能点 ID 进行传输。
  • 功能点名称:自定义的功能名称。
  • 标识名:功能点 Code 值,用于 App 显示功能名称的多语言管理。支持字母、数字和下划线,以字母开头。
  • 数据类型

 

类型 参数名 说明 示例
布尔型 bool 非真即假的二值型变量。 开关功能的开或者关。
数值型 value 可线性调节类型的数据。 温度调节,温度范围 20-40℃。
枚举型 enum 自定义的有限集合值。 工作档位,低档/中档/高档。
故障型 fault 用于上报和统计故障的功能点,支持多故障,数据只上报。 温度传感器故障、电机故障和高温故障等。
字符串型 string 以字符串形式传输的功能点。 -
透传型 raw 以二进制形式透传的功能点。 -

 

数据传输类型

  • 可下发可上报:指令数据可以发送给设备,设备数据可以传输给云端。
  • 只上报:数据只支持从设备传输给云端。
  • 只下发:数据只支持从云端发送给设备。

 

产品 pid : "ylr9R01cMWnMRqEB" 的功能点如下图所示:

 

DpId

dpCode

功能名称

描述

模式

类型

类型详情

1

led_switch

开关

 

rw

bool

{"type":"bool"}

2

work_mode

模式

增加音乐模式

rw

enum

{"range":["white","colour","scene","scene_1","scene_2","scene_3","scene_4","music"],"type":"enum"}

3

bright_value

亮度

 

rw

value

{"min":25,"unit":"","scale":0,"max":255,"type":"value","step":1}

4

temp_value

冷暖

 

rw

value

{"min":0,"unit":"","scale":0,"max":255,"type":"value","step":1}

5

colour_data

彩光模式数

rgbhsv

rw

string

{"type":"string","maxlen":14}

6

scene_data

情景模式数

rgbhsv

rw

string

{"type":"string","maxlen":14}

7

flash_scene_1

柔光模式

 

rw

string

{"type":"string","maxlen":14}

8

flash_scene_2

缤纷模式

 

rw

string

{"type":"string","maxlen":44}

9

flash_scene_3

炫彩模式

 

rw

string

{"type":"string","maxlen":14}

10

flash_scene_4

斑斓模式

 

rw

string

{"type":"string","maxlen":44}

101

music

音乐灯

音乐灯

wr

string

{"type":"string","maxlen":255}

 

Demo 介绍

 

Demo 地址

demo 地址:https://github.com/tuya/tuya-home-ios-sdk 功能分支:main

SDK 文档地址:https://tuyainc.github.io/tuyasmart_home_ios_sdk_doc/zh-hans/

 

Demo 下载

在终端的命令行中输入:

git clone https://github.com/tuya/tuya-home-ios-sdk.git

下载 demo 到本地。

环境配置

1、打开项目设置,Target => General,修改 Bundle Identifier 为涂鸦开发者平台对应的 iOS 包名

2、导入安全图片到工程根目录,重命名为 t_s.bmp,并加入「项目设置 => Target => Build Phases => Copy Bundle Resources」中。

3、在项目的PrefixHeader.pch文件添加以下内容:

#import <TuyaSmartHomeKit/TuyaSmartKit.h>

 

4、打开AppDelegate.m文件,在[AppDelegate application:didFinishLaunchingWithOptions:]方法中初始化SDK:

[[TuyaSmartSDK sharedInstance] startWithAppKey:<#your_app_key#> secretKey:<#your_secret_key#>];

 

5、打开 Debug 模式

在开发的过程中可以开启 Debug 模式,打印一些日志用于分析问题。

Objc:


  
  1. #ifdef DEBUG
  2. [[TuyaSmartSDK sharedInstance] setDebugMode: YES];
  3. #else
  4. #endif

 

Demo 内容

大家在开发的过程中可以参考的 demo 的代码。

 

在 demo 中我们已经完成了基于 dp 点控制实现智能灯泡的开关,亮度,冷暖,颜色控制。

 

智能灯控制页面的如果下图所示:

 

功能点 ID


  
  1. NSString * const kLightSwtichDpId = @"1"; /* 控制灯开关的 dp 点 */
  2. NSString * const kLightColorTypeDpId = @"2"; /* 控制灯类型的 dp 点 */
  3. NSString * const kLightColorBrightDpId = @"3"; /* 控制彩灯亮度的 dp 点 */
  4. NSString * const kLightColorTempDpId = @"4"; /* 控制彩灯 temp 的 dp 点 */
  5. NSString * const kLightColorDpId = @"5"; /* 控制灯色彩的 dp 点 */

 

开关操作


  
  1. - ( void) switchAction:(UISwitch *)sender {
  2. // 开关操作
  3. WEAKSELF_AT
  4. [TPDemoProgressUtils showMessag:TYSDKDemoLocalizedString(@ "loading", @ "") toView:self.view];
  5. [self.device publishDps:@{ kLightSwtichDpId:@(sender.isOn)} success:^{
  6. [TPDemoProgressUtils hideHUDForView:weakSelf_AT.view animated:NO];
  7. } failure:^(NSError *error) {
  8. [TPDemoProgressUtils hideHUDForView:weakSelf_AT.view animated:NO];
  9. [TPDemoProgressUtils showError:error.localizedDescription];
  10. }];
  11. }

亮度调节(白光和彩光模式下都支持)

分两种情况:在白光模式和彩光模式两种情况


  
  1. // Bright
  2. NSDictionary *dps = self.device.deviceModel.dps;
  3. if ([[dps objectForKey:kLightColorTypeDpId] isEqualToString: @"colour"]) {
  4. int ir,ig,ib;
  5. _hsvValue.v = value;
  6. HSVToRGB(_hsvValue.h, _hsvValue.s, _hsvValue.v, &ir, &ig, &ib);
  7. UIColor *resColor = RGBCOLOR(ir, ig, ib);
  8. NSString *dpsString = [ NSString stringWithFormat: @"%@%@",
  9. [[[resColor hexStringFromColor] lowercaseString] substringFromIndex: 1],
  10. [ self getHexStringFromHSV:_hsvValue]];
  11. publishDps = @{
  12. kLightSwtichDpId:@( YES),
  13. kLightColorDpId:dpsString,
  14. kLightColorTypeDpId: @"colour"
  15. };
  16. } else {
  17. CGFloat tempV = (value * 100 - 1)/( 100.0 -1.0) * ( self.maxValue - self.minValue) + self.minValue;
  18. int val = [ self round:tempV];
  19. publishDps = @{
  20. kLightSwtichDpId:@( YES),
  21. kLightColorBrightDpId:@(val),
  22. kLightColorTypeDpId: @"white",
  23. };
  24. }
  25. [ self.device publishDps:publishDps success:^{
  26. } failure:^( NSError *error) {
  27. }];

冷暖调节(只有白光模式支持)


  
  1. // Temperature
  2. int dpsInt = ( int)(value * ( self.tempMaxValue - self.tempMinValue) + self.tempMinValue);
  3. publishDps = @{
  4. kLightColorTypeDpId: @"white",
  5. kLightColorTempDpId:@(dpsInt)
  6. };
  7. [ self.device publishDps:publishDps success:^{
  8. } failure:^( NSError *error) {
  9. }];

颜色调节(只有彩光模式支持)


  
  1. #pragma mark - RSColorPickerViewDelegate
  2. - ( void)colorPickerDidChangeSelection:(RSColorPickerView *)colorPicker {
  3. NSDictionary *dps = self.device.deviceModel.dps;
  4. BOOL isSwitch = [[dps objectForKey:kLightSwtichDpId] tysdk_toBool];
  5. if (!isSwitch) {
  6. return;
  7. }
  8. HSVType hsv = [ self.class getHSVFromUIColor:colorPicker.selectionColor];
  9. _hsvValue.h = hsv.h;
  10. _hsvValue.s = hsv.s;
  11. _currentH = hsv.h;
  12. if (_hsvValue.v == 0) {
  13. _hsvValue.v = 1;
  14. }
  15. int r, g, b;
  16. HSVToRGB(_hsvValue.h, _hsvValue.s, _hsvValue.v, &r, &g, &b);
  17. NSString *dpsString = [ NSString stringWithFormat: @"%02x%02x%02x%@",
  18. ( unsigned int)r,
  19. ( unsigned int)g,
  20. ( unsigned int)b,
  21. [ self getHexStringFromHSV:_hsvValue]];
  22. NSDictionary *publishDps = @{
  23. kLightColorDpId:dpsString,
  24. kLightColorTypeDpId: @"colour",
  25. };
  26. [ self.device publishDps:publishDps success:^{
  27. } failure:^( NSError *error) {
  28. }];
  29. }

 

饱和度调节(只有彩光模式支持)


  
  1. // Saturation
  2. _hsvValue.s = value;
  3. if (_hsvValue.v == 0) {
  4. _hsvValue.v = 1;
  5. }
  6. int r, g, b;
  7. HSVToRGB(_hsvValue.h, _hsvValue.s, _hsvValue.v, &r, &g, &b);
  8. NSString *dpsString = [ NSString stringWithFormat: @"%02x%02x%02x%@",
  9. ( unsigned int)r,
  10. ( unsigned int)g,
  11. ( unsigned int)b,
  12. [ self getHexStringFromHSV:_hsvValue]];
  13. publishDps = @{
  14. kLightColorDpId:dpsString,
  15. kLightColorTypeDpId: @"colour",
  16. };
  17. [ self.device publishDps:publishDps success:^{
  18. } failure:^( NSError *error) {
  19. }];

智能灯状态变化回调刷新


  
  1. #pragma mark - TuyaSmartDeviceDelegate
  2. /// dp数据更新
  3. - ( void)device:(TuyaSmartDevice *)device dpsUpdate:( NSDictionary *)dps {
  4. [ self reloadData];
  5. }
  6. - ( void)reloadData {
  7. _hsvValue = [ self getHSVFromDpId:kLightColorDpId];
  8. NSDictionary *dps = self.device.deviceModel.dps;
  9. BOOL isSwitch = [[dps objectForKey:kLightSwtichDpId] boolValue];
  10. [ self.switchButton setOn:isSwitch];
  11. double brightnessValue = [ self getBrightness:dps];
  12. [ self.brightSliderView setSliderValue:brightnessValue];
  13. double tempValue = [ self getTempValue:[[dps objectForKey:kLightColorTempDpId] doubleValue]];
  14. [ self.tempSliderView setSliderValue:tempValue];
  15. HSVType hsv = [ self getHSVFromDpId:kLightColorDpId];
  16. UIColor *color = [ self getColorFromDpId:kLightColorDpId];
  17. NSLog( @" h : %f, s : %f, v : %f, color : %@", hsv.h, hsv.s, hsv.v, color);
  18. if (fabs(roundf(hsv.h) - roundf(_currentH)) > 1) {
  19. _currentH = hsv.h;
  20. self.colorPicker.selectionColor = color;
  21. self.colorPicker.brightness = 1;
  22. self.colorPicker.opaque = YES;
  23. }
  24. [ self.saturationSliderView setSliderValue:hsv.s];
  25. }

 


转载:https://blog.csdn.net/weixin_50563088/article/details/111885013
查看评论
* 以上用户言论只代表其个人观点,不代表本网站的观点或立场