• Try Us Out - See our Demo Tabs Above

    Sports Bars

    Experience our Sports Bar TV, Audio and Lighting Control System with our awesome demo! We provide multiple TV control systems that will easily integrate your Audio/Video and environmental components into one easy to use package. Let multiple hand-held remotes be a thing of the past and experience hassle free one-touch control. With the versatility of myServer 6, you may be able to retrofit existing equipment into the control system which makes it economical to get the most value out of your technology investment.

    Residential

    With a whole new exciting look and feel our transparent "Moonlight" user interface allows clarity and ease in maneuvering your lighting floor plan, climate control, security cameras, and security keypad as well as entertainment options. Control all aspects of your home with simplicity and confidence.

    Digital Signage

    Allonis makes it easy to control and launch your media content. We have created software that ties in seamlessly to your bar or restaurant control system. Upload new images and videos, discard old ones, decide what to play or post and where with just a few selections.

  • Sports Bar & Restaurant Demo

    Select a source on the left and then select the TVs you would like to change on the right.

    Along the bottom are options for a DirecTV remote, TV Guide, Audio, Favorites & AppleTV. In addition you can touch the video camera on the left hand source options to get a live preview of what's playing on that source. Be sure to click around and try everything.

    Read More

     

    Customer Listening Experience

    Pan from left to right and up and down to see all the TVs.

    Customers can select the TV closest to them to tune in to the audio.

    Read More

     

    No Floorplan Option.

    If you are not interested in a navigable floor plan we can provide a generic interface instead.

    The same features are supported.

    Read More
  • Residential Demo

    Below is our residential simulation.

    Be sure to click around and try everything. Read more about the UI below.

    Read More
  • Digital Signage

    In the large window select a player on the left. Then select an option layout on the right. Select available assets from the list provided. You can add a ticker of either a message or weather by checking the boxes. When you are finished making selections click “send to player”. Your choice will appear on the corresponding player above. To pause a video click the player once.

    Read More
  • SmartRemote Demo

    Below is our SmartRemote simulation.

    Be sure to click around and try everything. Read more about the UI below.

    Read More

Our Products

See the latest myServer 6 products, available for individual purchase or part of a custom Allonis system built especially for your project.
Software
Hardware
Sports Bars
Services

The Elgato Stream Deck is a many button user interface hardware that can trigger other software to do "stuff".

StreamDeckXL 1

With myServer's extensive library of device support, there has been interest in integrating the Stream Deck to trigger myServer macros.  Those macros can then command the vast library of device actions (like trigger a video wall scene, or go to a set volume position on a zone, or turn on the whole system, etc.)

 Easiest integration is to drag a "website" widget to the StreamDeck button (in StreamDeck configuration software).  Name it with your function.  Then, put "http://192.168.1.216/api/docommand?command=AV|294~Power~On" as an example command.  The IP in the example URL is the myServer 6 controller's address.  Any command or macro can be executed.  Choose the "GET request in background" in StreamDeck app so that a web page doesn't launch on your StreamDeck USB connected PC.

So, you can do thousands of activities like:  Bar Open (launch a myServer Preset).  Or "Night time"  or "Outside Cameras" to have myServer display the cameras on the outside of your home / bar.  Or any other manufacturing task sequence, or Audio / Video actions, etc that myServer is controlling.  You can launch a myServer user interface on your PC with a touch of a StreamDeck button.

 

 

If you're looking to manage a Stream Deck using a Raspberry Pi,  This guide will walk you through the process step-by-step, ensuring you can get your Stream Deck up and running in no time.

Step 1: Setup Your Raspberry Pi

First, you need to set up your Raspberry Pi with the latest Raspberry Pi OS. If you haven't already done so, download and install the OS from the official Raspberry Pi website. Once your Pi is up and running, make sure it's up-to-date by running the following commands in the terminal:

sudo apt update && sudo apt upgrade

Step 2: Install Dependencies

Next, you'll need to install Python and the necessary libraries. Open a terminal and enter the following commands:

sudo apt install python3 python3-pip
pip3 install streamdeck_ui

Step 3: Install Stream Deck UI

Stream Deck UI is a graphical interface that allows you to configure your Stream Deck. Install it by running:

pip3 install streamdeck_ui

Step 4: Connect Your Stream Deck

Plug your Stream Deck into a USB port on the Raspberry Pi. The Pi should recognise the device automatically.

Step 5: Run Stream Deck UI

To start configuring your Stream Deck, launch the Stream Deck UI application by entering:

streamdeck

The graphical interface will appear, allowing you to assign actions and customise the buttons on your Stream Deck.

Step 6: Create Scripts and Commands

Now, you can create Python scripts or shell commands that you want the Stream Deck buttons to trigger. Assign these scripts or commands to the buttons through the Stream Deck UI. This step is where the real magic happens, as you can tailor the functionality to suit your specific needs.

Optional: Automate on Startup

If you want the Stream Deck UI to start automatically when your Raspberry Pi boots up, you can add it to the autostart configuration. Here's how:

  1. Create the autostart directory if it doesn't exist:

    mkdir -p ~/.config/autostart
    
  2. Open a new autostart configuration file:

    nano ~/.config/autostart/streamdeck.desktop
    
  3. Add the following content to the file:

    [Desktop Entry]
    Type=Application
    Name=StreamDeck
    Exec=streamdeck
    
  4. Save and close the file.

With these steps completed, your Stream Deck will be ready to go every time your Raspberry Pi boots up.

Conclusion

Using a Raspberry Pi to manage a Stream Deck opens up a world of possibilities for automation and customisation, especially when paired to myServer 6. Whether you're using it for productivity, streaming, or just for fun, this setup will give you the flexibility and control you need. Enjoy your newly configured Stream Deck!