Jairo

LoRa Door Control System

A distributed door control system using LoRa for wireless communication between a central server and door nodes.

Overview

The LoRa Door Control System is a distributed door control solution that leverages LoRa technology for reliable, long-range wireless communication between a central server and multiple door nodes. This system is designed to provide secure access control for buildings, facilities, or any environment requiring controlled door access.

The system utilizes the LoRa (Long Range) protocol, which offers several advantages for this application:

System Architecture

System Architecture Diagram

The system consists of three main components working together to provide reliable door control:

Central Server

  • TCP server accepting connections from the central LoRa node
  • Manages door control commands
  • Implements ping/acknowledgment system
  • Runs on any Linux/macOS system

Central Node (Raspberry Pi Pico W)

  • Bridges TCP server with LoRa network
  • Forwards commands from server to doors
  • Handles packet routing and acknowledgments
  • Uses WiFi for server connection
  • Uses LoRa for door communication

Door Nodes (Raspberry Pi Pico)

  • Controls physical door mechanisms
  • Receives and processes LoRa commands
  • Displays status on OLED screen
  • Sends acknowledgments back to central node

Protocol

The system uses a custom protocol for reliable communication between components:

Packet Structure

Commands

Communication Flow

  1. Server sends command to central node via TCP
  2. Central node forwards command to door node via LoRa
  3. Door node processes command and sends acknowledgment
  4. Central node forwards acknowledgment to server
  5. Server confirms successful command execution

Hardware Requirements

Central Node (Pico W)

Door Node (Pico)

Setup and Configuration

Server Setup

# Build and run the server
go build
./gates

Central Node

# Flash the central node (Pico W)
tinygo flash --target=pico-w -stack-size=8kb central/

Door Node

# Flash the door node (Pico)
tinygo flash --target=pico door/

Configuration Parameters

Edit protocol/config.go to set:

LoRa configuration in protocol/config.go:

Features

Reliable Communication

Security

User Interface

Development

The project uses TinyGo for embedded development. Required tools:

Back to Projects