Skip to content

beyaznet/TaliaBee

master
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Code

Latest commit

 

Git stats

Files

Permalink
Failed to load latest commit information.
Type
Name
Latest commit message
Commit time
 
 
doc
 
 
 
 
 
 
 
 
 
 
 
 

About

The TaliaBee box is an easy-to-use I/O controller based on Raspberry Pi and MedIOEx. This project contains the application layer of the TaliaBee box.

Table of contents

Demo

Visit our online demo box to try TaliaBee.

Requirements

Installation

TaliaBee supports Raspbian Buster. First, install Raspbian GNU/Linux. Then login as pi user and run the following commands:

wget https://raw.githubusercontent.com/beyaznet/TaliaBee/master/installer/install.sh
sudo bash install.sh

TaliaBee is ready to go now.

Interfaces

Web user interface

TaliaBee provides an easy-to-use, mobile-friendly web user interface.

TaliaBee web interface

Please see the GUI documentation for common usages.

Application programming interface

TaliaBee provides an API for developers. The developers can monitor and control TaliaBee's I/O through API using their favorite programming languages. Therefore, you don't need to know a specific programming language to use TaliaBee. You can communicate through API even without writing any code.

Using curl to set the relay output #14

curl -s "http://127.0.0.1/api/ro/14/set"

Please see the API documentation for common usages.

Python interface

TaliaBee provides a Python interface for Pythonistas too. Python TaliaBeeIO Module can be used to monitor and to control the I/O pins of the TaliaBee box through API.

>>> from taliabeeio import TaliaBeeIO
>>> io = TaliaBeeIO()
>>>
>>> # read from the analog input 3
>>> print(io.ai3)
0
>>> # write to the analog output 4
>>> io.ao4 = 250
>>>
>>> # set the relay output 13
>>> io.ro13 = True
>>>
>>> # read the temperature
>>> print(io.temperature)
37.125

Please see Python TaliaBeeIO Module project page for common usages.

Contact

@TaliaBeeIO on Twitter