LARS
LARS (Light Augmented Reality System) is an open-source framework for light-based interaction and real-time tracking in multi-robot experiments. Inspired by ARK, LARS extends the augmented reality paradigm to robotic collectives by projecting dynamic visual cues and environments onto the arena, enabling new experimental possibilities for collective robotics research, education, and outreach. LARS features integrated tracking, light projection, and modular experiment control with a user-friendly Qt GUI.
Loading...
Searching...
No Matches
serialwin.h
1#ifndef SERIALWINDOW_H
2#define SERIALWINDOW_H
3
4#include <QWidget>
5#include <QString>
6
7class QTextEdit;
8
9class SerialWindow: public QWidget {
10 Q_OBJECT
11
12public:
13 SerialWindow(QString title, QWidget *parent = 0);
14
15public slots:
16 void addText(QString);
17 void clear();
18
19private:
20 QTextEdit *text_edit;
21};
22
23#endif//SERIALWINDOW_H