tree: 9faec4264c77f65b0ac4099dd35abde157a6032f [path history] [tgz]
  1. main/
  2. third_party/
  3. .gitignore
  4. chip_main.cmake
  5. README.md
examples/lighting-app/ameba/README.md

CHIP Ameba Lighting Example

This example demonstrates the Matter Lighting application on Ameba platform.



Supported Device

The CHIP demo application is supported on Ameba RTL8722DM Board.

Building the Example Application

  • Pull docker image:

      $ docker pull connectedhomeip/chip-build-ameba:latest
    
  • Run docker container:

      $ docker run -it -v ${CHIP_DIR}:/root/chip connectedhomeip/chip-build-ameba:latest
    
  • Setup build environment:

      $ source ./scripts/bootstrap.sh
    
  • To build the demo application:

      $ ./scripts/build/build_examples.py --target ameba-amebad-lighting build
    

    The output image files are stored in out/ameba-amebad-lighting/asdk/image folder.

    The bootloader image files are stored in out/ameba-amebad-lighting/asdk/bootloader folder.

  • After building the application, Ameba Image Tool is used to flash it to Ameba board.

  1. Connect your device via USB and open Ameba Image Tool.
  2. Select correct serial port and set baudrate as 115200.
  3. Browse and add the corresponding image files in the Flash Download list to the correct locations
  4. Click Download button.

Commissioning

There are two commissioning modes supported by Ameba platform:

BLE mode

  1. Build and Flash
  2. The example will run automatically after booting the Ameba board.
  3. Test with Chip-Tool

IP mode

  1. Build and Flash
  2. The example will run automatically after booting the Ameba board.
  3. Connect to AP using ATW0, ATW1, ATWC commands
  4. Test with Chip-Tool

Cluster Control

After successful commissioning, use the OnOff cluster command to control the OnOff attribute. This allows you to toggle a parameter implemented by the device to be On or Off.

  • Via Chip-Tool

      $ ./chip-tool onoff on ${NODE_ID_TO_ASSIGN} 1
      $ ./chip-tool onoff off ${NODE_ID_TO_ASSIGN} 1