Table of Contents

JetHub H1

Appearance

Description

The controller is designed for home automation and monitoring tasks: polling sensors, collecting and transmitting data, PLC functions in smart home systems. The powerful JetHome JetHub H1 quad-core processor allows it to be used as a central controller in smart home systems in conjunction with various Wi-Fi and ZigBee wireless sensors from other manufacturers. The controller case is made in a laconic modern design that will fit into any interior.

General characteristics

Communications

Interfaces

Power supply

The controller is powered from a stabilized DC source +5V via the MicroUSB connector. Power consumption is less than 5W (excluding external devices attached to USB ports).

The standard USB 2.0 interface can limit the output current to 0.5A, which may not be enough for the controller to work normally under load. This must be considered when powering the controller from the computer's USB port.

It is recommended to use the power supply supplied with the controller. When powering the controller from a computer or from another device with a USB interface, as well as with a third-party power supply, make sure that this device or power supply is capable of providing the necessary output power: up to 5W (1A) if no additional devices will be connected to the controller or up to 10W (2A) if additional devices are connected via USB ports of the controller.

Dimensions and weight

Environmental requirements

Software

Armbian operating system with access to a large number of additional packages from the Ubuntu 20.04 repository, as well as other third-party applications. It is possible to install such popular home automation software as Home Assistant, openHAB, etc.

The latest version of the JetHome Armbian firmware can be downloaded at http://update.jethome.ru/armbian/ (see p. “Controller firmware”) For the H1 controller, the Armbian firmware version with the suffix “j80” is required

Images of the Home Assistant Operating System (HassOS) operating system are also available: http://wiki.jethome.ru/hassos

The controller is not designed to perform high-load tasks in 24/7 mode, such as video processing.

General view of the controller board

The figure shows:

USB

The controller has two external USB 2.0 ports (USB1 and USB2. see “General view of the controller board”) for connecting additional peripheral devices. When powering an external device from the USB port of the controller, the current consumed by this external device must not exceed 0.5A.

The USB1 port (located closer to the power connector) is also used for booting controller firmware (see “Controller firmware”).

UART console

The console is attached to the micro-USB connector (also used to power the controller) through the onboard USB-UART interface converter (RT Silicon Labs CP2102).

The driver for the USB-UART interface converter for Windows can be found at manufacturer's website. For Linux, no additional driver is usually required.

Port configuration:

The console is connected to the UART_AO_A port of the Amlogic S905W processor:

Processor Pin Function Description
GPIOAO_0 UART_AO_A_TX Console TX
GPIOAO_1 UART_AO_A_RX Console RX

Zigbee Wireless Module

The JetHome JetHub H1 controller uses a Zigbee wireless communication module based on a TI CC2538 + CC2592 or TI CC2652P1 chip. See module description: JetHome Zigbee module ZB3CX v.1 (CC2538+CC2592) or JetHome Zigbee module ZB6C v.1 (CC2652P1)

The module is connected to the UART_AO_B port of the processor (the device is presented in the system as /dev/ttyAML2), hardware receive/transmit control (RTS and CTS lines) is not used. It is possible to control the hardware reset of the wireless module (RESET line) and control its boot mode (BOOT line) using the system GPIO interface.

A 2×5 connector with a pin pitch of 1.27mm is installed on the board for JTAG flashing:

Module connection:

Processor Pin Function Description
GPIOAO_6 GPIOAO_6 Module hardware reset management
GPIOAO_9 GPIOAO_9 Module loading mode control
GPIOAO_4 UART_AO_B_TX UART TX line
GPIOAO_5 UART_AO_B_RX UART RX line
GPIOAO_2 UART_AO_B_CTS UART CTS line
GPIOAO_3 UART_AO_B_RTS UART RTS line

Wireless module control from Linux

Usage of the RESET line of the wireless module

GPIO initialization:

# cd /sys/class/gpio
# echo 507 > export
# echo out > gpio507/direction

Activating hardware reset mode:

# echo 1 > gpio507/value

Deactivating hardware reset mode (bringing wireless module back to operating mode):

# echo 0 > gpio507/value

Usage of the BOOT line of the wireless module from Linux

GPIO initialization:

# cd /sys/class/gpio
# echo 510 > export
# echo out > gpio510/direction

Way to enable bootloader mode may depend on the type of module and its firmware. For JetHome CC2538 ZigBee modules, the bootloader mode can be activated by a low logic level on the BOOT line:

# echo 0 > gpio510/value

Custom LED

There are two LEDs installed on the controller board: one to indicate the presence of supply voltage (green LED), the second user blue LED is connected to the GPIODV_24 output of the Amlogic S905W processor.

LED control from Linux

GPIO initialization:

# cd /sys/class/gpio
# echo 474 > export
# echo out > gpio474/direction

Turning on the LED:

# echo 1 > gpio474/value

LED off:

# echo 0 > gpio474/value

Manipulating of LED state from Home Assistant

switches:
  -platform:command_line
    switches:
      led_gpio:
        command_on: "echo 1 > /sys/class/gpio/gpio474/value"
        command_off: "echo 0 > /sys/class/gpio/gpio474/value"
        command_state: "cat /sys/class/gpio/gpio474/value"
        value_template: '{{ value == "1" }}'
        friendly_name: Blue LED

Controller Firmware

Flashing from Windows using Amlogic Burning Tool

You can use the Amlogic Burning Tool to flash the software image. See Burning Tool Instructions.

The latest JetHome Armbian firmware can be downloaded from http://update.jethome.ru/armbian/

H1 controller requires Armbian firmware variant with “j80” suffix

The firmware should be flashed through the USB1 port of the controller (see General view of the controller board).

If the controller already has a firmware with a working u-boot installed, the bootloader mode can be entered in two ways:

If the controller firmware is damaged or a firmware was installed that does not support the standard methods of switching to the bootloader mode indicated above, then the following procedure should be used:

Firmware flashing from Ubuntu Linux

For flashing from Linux, you can use the burn-tool utility from the repository https://github.com/khadas/utils

Documentation for using the utility https://docs.khadas.com/vim1/UpgradeViaUSBCable.html#Upgrade-On-Ubuntu

To install the utility, run the following commands:

$ git clone https://github.com/khadas/utils khadas-utils
$ cd khadas-utils
$ ./INSTALL

To flash the controller, put it into bootloader mode in any way described above. Next, run the command:

burn tool -i <FIRMWARE_IMAGE_FILE>

where <FIRMWARE_IMAGE_FILE> is the firmware file

Sample program output:

$ burn-tool -i ~/firmware/H1/JetHome_1.0.12_Armbian_20.08_Arm-64_focal_current_5.7.16_j80.img
Try to burn Amlogic image...
Burning image '/home/ak/firmware/H1/JetHome_1.0.12_Armbian_20.08_Arm-64_focal_current_5.7.16_j80.img' for 'VIM1/VIM2' to eMMC...
Rebooting the board........[OK]
Unpacking image [OK]
Initializing ddr ........[OK]
Running u-boot........[OK]
Create partitions [OK]
Writing device tree [OK]
Writing bootloader [OK]
Wiping data partition [OK]
Wiping cache partition [OK]
Write boot partition [OK]
Writing rootfs partition [OK]
Resetting board [OK]
Time elapsed: 6 minute(s).
Done!

Firmware flashing using a USB flash drive

It is possible to flash the controller using a USB flash drive. See instruction Firmware the controller using a USB flash drive

First launch of JetHome Armbian

Setting up the controller at its first start or after flashing it can be done in the following ways:

To configure the controller over Ethernet, connect the controller to a wired local area network with a configured and running DHCP server. Identify the new IP address of the controller using your DHCP server tools. You can check MAC address of the controller printed on the bottom of the controller case. For example, in Mikrotik routers, this can be done in the IP → DHCP Server → Leases menu section. Next, connect to the controller using any ssh client, for example, Putty for Windows OS.

To connect via the UART console, connect the controller with a MicroUSB cable to the computer (see p. “UART console”). The speed of the interface is 115200 Kbps.

The default password for the “root” user is “1234”.

On first launch, you will be prompted for:

Configuring WiFi in JetHome Armbian

To configure the connection to the WiFi network, you can use the standard console utility armbian-config. After running this utility, select the “Network” menu, then choose “WiFi” section.

Zigbee Embedded Module Firmware

To flash the Zigbee module, you can use the python utility cc2538-bsl. See manual Flashing TI CC2538/CC2652 modules and sticks using the cc2538-bsl utility

See Software for modules based on TI CC2538 chip or Software for sticks and modules based on TI CC2652P1 chip for recommended firmware

Procedure for firmware:

Switch the module to SBL (serial bootloader) mode:

# echo 0 > /sys/class/gpio/gpio510/value
# echo 1 > /sys/class/gpio/gpio507/value
# echo 0 > /sys/class/gpio/gpio507/value

Example command for firmware:

# python3 cc2538-bsl/cc2538-bsl.py -p /dev/ttyAML2 -e -w JH_2538_2592_ZNP_UART_20201010.bin

Reload the module into “working” mode:

# echo 1 > /sys/class/gpio/gpio510/value
# echo 1 > /sys/class/gpio/gpio507/value
# echo 0 > /sys/class/gpio/gpio507/value

HOWTO