Redis API Documentation


Sending Commands

Channels

Own: c{clientId}-ops
ShareCode: c{clientId}-sops-{sharecode}

Command Format

{
  "id": "<shocker.id>",
  "m": "<mode>", // 'v', 's', 'b', or 'e'
  "i": "<intensity>", // Could be vibIntensity, shockIntensity or a randomized value
  "d": "<duration>", // Calculated duration in milliseconds
  "r": "<repeating>", // true or false, always set to true.
  "l": {
    "u": "<userID>", // User ID from first step
    "ty": "<type>", // 'sc' for ShareCode, 'api' for Normal
    "w": "<warning_flag>", // true or false, if this is a warning vibrate, it affects the logs
    "h": "<hold>", // true if button is held or continuous is being sent.
    "o": "<origin>" // send to change the name shown in the logs.
  }
}

Redis Connection

This requires a Web Server

You cannot send a raw TCP connection via the browser.

Where do I find the UserID or ShockerID?

For finding UserID, Tokens, and more see PiShock API Documentation.

Connecting to Redis

Host: redis.pishock.com
Port: 6379
Username: user + UserID
Password: Token

# Python example
try:
    REDIS_INSTANCE = redis.Redis(
        host="redis.pishock.com",
        port=6379,
        username="user123",  # your userid prefixed with user
        password="yourtokenhere",
    )
    REDIS_INSTANCE.ping()
except redis.exceptions.ConnectionError:
    print("Could not connect to redis.")
except Exception as e:
    print(f"Error: {e}")

Example Code (Python)

import redis
import json

REDIS_INSTANCE: redis.Redis = None

try:
    REDIS_INSTANCE = redis.Redis(
        host="redis.pishock.com",
        port=6379,
        username="user123",  # your userid prefixed with user
        password="yourtokenhere",
    )
    REDIS_INSTANCE.ping()
except redis.exceptions.ConnectionError:
    print("Could not connect to redis.")
except Exception as e:
    print(f"Error: {e}")


payload = {
    "id": 321, # Shocker ID
    "m": "s", # Shock mode
    "i": 10, # 10 intensity
    "d": 1000, # 1 second long
    "r": True,
    "l": {
        "u": 123, # your UserID
        "ty": "api", # type of connection
        "w": False, # Not a warning vibration
        "h": False, # Not held/continuous
        "o": "Example", # Your application name
    },
}

if REDIS_INSTANCE:
    channel = "c420-ops" # c{clientID}-ops clientID is the id of your device/hub
    REDIS_INSTANCE.publish(channel, json.dumps(payload))