openpilot is an open source driver assistance system. openpilot performs the functions of Automated Lane Centering and Adaptive Cruise Control for over 200 supported car makes and models.

19 lines
287 B

#pragma once
#include <QVBoxLayout>
#include <QWidget>
class DriveStats : public QWidget {
Q_OBJECT
public:
explicit DriveStats(QWidget* parent = 0);
private:
QVBoxLayout* vlayout;
private slots:
void parseError(QString response);
void parseResponse(QString response);
};