Want bulletproof remote power control in Home Assistant that survives router crashes and zero local internet?
The Logmor Cellular Smart Plug gives you direct, unlimited REST API access over 4G LTE — from anywhere on earth.
Reboot Starlink, turn on cabin heaters, preheat airplane engines — all from Home Assistant
Why Logmor Is Perfect for Home Assistant
True Cellular – No Local Network
Works when WiFi, Zigbee, or Z-Wave die.
Unlimited REST Calls
No rate limits. Call as often as you want.
Full Switch + Reboot + Sensors
On/Off, 30-second reboot, signal strength, uptime, temperature.
Copy-Paste Integration (2025 Working Code)
# configuration.yaml – REST Command for On/Off/Reboot
rest_command:
logmor_power_on:
url: "https://api.particle.com/v1/devices/{{ device_id }}/control"
method: post
headers:
Authorization: "Bearer {{ your_access_token }}"
content_type: "application/x-www-form-urlencoded"
payload: "arg=1"
logmor_power_off:
url: "https://api.particle.com/v1/devices/{{ device_id }}/control"
method: post
headers:
Authorization: "Bearer {{ your_access_token }}"
content_type: "application/x-www-form-urlencoded"
payload: "arg=0"
logmor_reboot:
url: "https://api.particle.com/v1/devices/{{ device_id }}/control"
method: post
headers:
Authorization: "Bearer {{ your_access_token }}"
content_type: "application/x-www-form-urlencoded"
payload: "arg=PowerCycle"
# switches.yaml – Full Switch Entity
switch:
- platform: rest
resource: https://api.particle.com/v1/devices/{{ device_id }}/data
name: "Logmor Cabin Heater"
body_on: "arg=1"
body_off: "arg=0"
is_on_template: "{{ 'RelayStatus\":1' in value }}"
headers:
Authorization: "Bearer {{ your_access_token }}"
verify_ssl: true
Real Home Assistant Users Love It
“Finally a cellular plug with a real REST API. No cloud, no bullsh*t. Works perfectly in HA.” — r/homeassistant
