Skip to content

Tuya-Community/tuya-iotos-embeded-demo-ble-key-driver

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 

Repository files navigation

Tuya IoTOS Embedded Bluetooth LE Key Driver

English | 中文


Introduction

In this demo, we will show you how to implement a key driver. Based on the Tuya IoT Platform, we use Tuya's Bluetooth LE module, SDK, and the Tuya Smart app to connect a touch sensor to the cloud so that you can view the keypress information on the mobile app. This demo provides interfaces for pin registration to help you implement pin configuration, active level, touch-and-hold duration (2 options), and the keypress callback.


Get started

Set up development environment


Compile and flash

  • Edit code

    1. In tuya_ble_app_demo.h, specify the PID of the product you have created on the Tuya IoT Platform.

       #define APP_PRODUCT_ID     "xxxxxxxx"
      

      Change xxxxxxxx to the PID.

    2. In tuya_ble_app_demo.c, specify the authkey and UUID.

       static const char auth_key_test[] = "yyyyyyyy";
       static const char device_id_test[] = "zzzzzzzz";
      

      Change yyyyyyyy to your authkey and zzzzzzzz to your UUID.

  • Compile code

    Compile the edited code, download the code to the hardware, and run it. You may need to download the stack and bootloader depending on your chip models. Check the logs and use the third-party Bluetooth debugging app (such as LightBlue for iOS) to verify the Bluetooth broadcast.


File introduction

├── src         /* Source code files */
|    ├── sdk
|    |    └── tuya_uart_common_handler.c        /* Code for UART communication */
|    ├── driver
|    |    └── tuya_key.c                        /* Touch sensor driver */
|    ├── platform
|    |    ├── tuya_gpio.c                       /* GPIO driver */
|    |    └── tuya_timer.c                      /* Timer driver */
|    ├── tuya_ble_app_demo.c                    /* Entry file of application layer */
|    └── tuya_demo_key_driver.c                 /* Sample code */
|
└── include     /* Header files */
     ├── common
     |    └── tuya_common.h                     /* Common types and macros */
     ├── sdk
     |    ├── custom_app_uart_common_handler.h  /* Code for UART communication */
     |    ├── custom_app_product_test.h         /* Implementation of custom production test items */
     |    └── custom_tuya_ble_config.h          /* Application configuration file */
     ├── driver
     |    └── tuya_key.h                        /* Touch sensor driver */
     ├── platform
     |    ├── tuya_gpio.h                       /* GPIO driver */
     |    └── tuya_timer.h                      /* Timer driver */
     ├── tuya_ble_app_demo.h                    /* Entry file of application layer */
     └── tuya_demo_key_driver.h                 /* Sample code */

Entry to application

Entry file: /tuya_ble_app/tuya_ble_app_demo.c

  • void tuya_ble_app_init(void) is executed to initialize Tuya IoTOS Embedded Bluetooth LE SDK. This function is executed only once.
  • void app_exe() is used to execute the application code. It is executed in a loop.

Data point (DP)

Function tuya_ble_dp_data_report
Function prototype tuya_ble_status_t tuya_ble_dp_data_report(uint8_t *p_data,uint32_t len);
Feature overview Reports DP data.
Parameters p_data [in]: DP data.
len[in]: data length. It cannot exceed TUYA_BLE_REPORT_MAX_DP_DATA_LEN.
Return value TUYA_BLE_SUCCESS: sent successfully.
TUYA_BLE_ERR_INVALID_PARAM: invalid parameter.
TUYA_BLE_ERR_INVALID_STATE: failed to send data due to the current Bluetooth connection, such as Bluetooth disconnected.
TUYA_BLE_ERR_NO_MEM: failed to request memory allocation.
TUYA_BLE_ERR_INVALID_LENGTH: data length error.
TUYA_BLE_ERR_NO_EVENT: other errors.
Notes application calls this function to send DP data to the mobile app.

Parameter description:

The Tuya IoT Platform manages data through DPs. The data generated by any device is abstracted into a DP. DP data consists of four parts, as described below.

  • Dp_id: the DP ID of a data point defined on the Tuya IoT platform. It is one byte.

  • Dp_type: the data type. It is one byte.

    #define DT_RAW 0 raw type.

    #define DT_BOOL 1 Boolean type.

    #define DT_VALUE 2 value type. The value range is specified when a DP of value type is created on the Tuya IoT Platform.

    #define DT_STRING 3 string type.

    #define DT_ENUM 4 enum type.

    #define DT_BITMAP 5 bitmap type.

  • Dp_len: It can be one byte or two bytes. Currently, Bluetooth only supports one byte, so the data of a single DP can be up to 255 bytes.

  • Dp_data: the DP data, with dp_len byte(s).

The data that the parameter p_data points to must be packaged in the following format for reporting.

DP 1 data DP n data
1 2 3 4 n n+1 n+2 n+3
Dp_id Dp_type Dp_len Dp_data Dp_id Dp_type Dp_len Dp_data

When this function is called, the maximum data length is TUYA_BLE_REPORT_MAX_DP_DATA_LEN, which is 255+3 currently.


Pin configuration

Peripherals I/O
Key 1 PB7
Key 2 PB1

Reference


Technical support

You can get support from Tuya with the following methods:


About

Tuya IoTOS Embedded Bluetooth LE Key Driver

Resources

Stars

Watchers

Forks

Packages

No packages published

Languages