SIC
SIC is a framework for quickly getting started with social robotics by making it simple to combine complex devices such as Nao’s and powerful services such as Google Dialogflow.
Getting started with SIC consists of a few basic steps:
Installing SIC on your device
Installing SIC on your robot
Starting Redis and SIC on your device
Starting SIC on your robot
Start your program to control the robot
Installation
You can find the instructions on how to install the framework here: Install.
Setup
Once installed to all devices you want to use, we can start the framework.
This consists of two (or three) steps:
Start Redis
(Optional) Start a service, such as face detection
Run your program
Starting Redis on your laptop
To enable communication between all your devices, we have to start Redis on some device.
This can be done in two ways: By starting redis yourself or using docker.
In a (WSL) terminal, start redis using
# in the `framework` folder: redis-server conf/redis/redis.conf
Optionally, you can now start other services on your laptop, such as text to speech, by starting the service in a terminal. For example:
cd framework/sic_framework/services/text2speech python3 text2speech_service.py
or with docker
docker compose up text2speech
Running a demo
To start a demo, for example to show pepper’s camera output on your screen, simply execute a python script. Some demos are available in the framework/sic_framework/tests
folder.
To start the camera demo from the terminal, use the following commands.
Note: This demo requires you to have the OpenCV module installed, as well as have the framework installed.
cd framework/sic_framework/tests python demo_nao_camera.py
If all went well, a display should pop up showing you the camera output of your robot!
API
The goal of SIC is to provide easy to use high level access to devices and services. For example, to make a NAO robot say something, run the following python script on your laptop! To see more functionality check out the framework/sic_framework/tests
folder!
from sic_framework.devices import Nao from sic_framework.devices.common_naoqi.naoqi_text_to_speech import NaoqiTextToSpeechRequest nao = Nao(ip='192.168.0.151') # adjust this to the IP adress of your robot. nao.tts.request(NaoqiTextToSpeechRequest("Hello!"))