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
kilobotenvironment.h
1#ifndef KILOBOTENVIRONMENT_H
2#define KILOBOTENVIRONMENT_H
3
4#include <QObject>
5#include <QVector>
6#include "kilobot.h"
7
8class KilobotEnvironment : public QObject
9{
10 Q_OBJECT
11public:
12 explicit KilobotEnvironment(QObject *) {}
13 KilobotEnvironment() {}
14// virtual QVector <uint8_t> getEnvironmentValue(QPointF) { QVector <uint8_t> temp; return temp;} // Don't need?
15
16signals:
17 void transmitKiloState(kilobot_message);
18
19public slots:
20 virtual void update() {}
21 virtual void updateVirtualSensor(Kilobot) {} // Call this updateVirtualSensor(...)
22
23
24};
25
26#endif // KILOBOTENVIRONMENT_H
Definition kilobot.h:118
Definition kilobot.h:25