Installation

Installation Guide

Installation Guide - mounting and wiring diagram

Smartphone App

LCG Remote Control

Control your elevator directly from your Smart Phone. Call the elevator, select floors, and configure button positions — all from one simple interface.

LCG Remote - Control Screen

One-Tap Control

All elevator buttons on one screen. Tap to call elevator or select a floor.

LCG Remote - Elevator Settings

Elevator Setup

Configure elevators with interior and exterior devices.

LCG Remote - Button Configuration

Button Calibration

Set X, Y, Z coordinates for each button position.

See It In Action

Watch the Demo

Interior Unit

Exterior Unit

    import asyncio
    from bleak import BleakClient
    
    uuid = "F451470C-..."
    svc  = "19b10001-e8f2-537e-4f6c-d104768a1217"
    
    async def press_button(x, y, z):
        async with BleakClient(uuid) as c:
            await c.write_gatt_char(svc, bytes([x]))
            await c.write_gatt_char(svc, bytes([y]))
            await c.write_gatt_char(svc, bytes([z]))
    
    asyncio.run(press_button(20, 20, 35))

    Your Cart