1. 程式人生 > >我們物聯網專業的嵌入式實習-day07(開發智慧家居系統-QT簡單的學習使用及分配專案)

我們物聯網專業的嵌入式實習-day07(開發智慧家居系統-QT簡單的學習使用及分配專案)

QT通訊的一個簡單例子程式碼如下(注意ip與服務端的同一個網段,埠要一樣)

#include "widget.h"
#include "ui_widget.h"


Widget::Widget(QWidget *parent) :
    QWidget(parent),
    ui(new Ui::Widget)
{
    ui->setupUi(this);
    pSocket = new QTcpSocket;
    connect(pSocket, SIGNAL(connected()), this, SLOT(change_connect_button()));
    connect(pSocket, SIGNAL(readyRead()), this, SLOT(read_data()));
}


Widget::~Widget()
{
    delete ui;
}


void Widget::on_pushButton_clicked()
{
    QString str = ui->lineEdit->text();
    QByteArray arr;
    arr.append(str);
    pSocket->write(arr);
}


void Widget::on_connectButton_clicked()
{
    pSocket->connectToHost("192.168.1.142", 8888);
}


void Widget::change_connect_button()
{
    ui->connectButton->setEnabled(false);
}


void Widget::read_data()
{
    char buf[1024] = {0};
    pSocket->read(buf, sizeof(buf));
    QString str;
    str.append(buf);
    ui->lineEdit_2->setText(str);
}

專案分工:5人
1、系統移植
2、客戶端介面的設計--要求有登入介面
3、與伺服器通訊,並且實現空調等的開關
4、與伺服器通訊,接收圖片,並完成顯示
5、伺服器的搭建以及實現圖片採集給客戶端傳送