mirror of
https://github.com/vale981/Taevitas
synced 2025-03-05 09:31:42 -05:00
A first Try on Serial.
This commit is contained in:
parent
7964cc0921
commit
0a07cf3745
2 changed files with 3 additions and 3 deletions
|
@ -427,15 +427,15 @@ void MainWindow::frameSaved( FlyCapture2::Image * image ) {
|
||||||
}
|
}
|
||||||
|
|
||||||
ui->buffer->display( image_buffer->length() );
|
ui->buffer->display( image_buffer->length() );
|
||||||
|
comm.sendBuffer( image_buffer->length() );
|
||||||
|
|
||||||
if ( status == STOPPING && image_buffer->empty() )
|
if ( status == STOPPING && image_buffer->empty() )
|
||||||
startStopRecording();
|
startStopRecording();
|
||||||
|
|
||||||
comm.sendBuffer( image_buffer->length() );
|
|
||||||
m.unlock();
|
m.unlock();
|
||||||
}
|
}
|
||||||
|
|
||||||
void MainWindow::setLcd() {
|
void MainWindow::setLcd() {
|
||||||
qDebug() << "setting lcd";
|
|
||||||
ui->framesCaptured->display( recorder.frameNumber() );
|
ui->framesCaptured->display( recorder.frameNumber() );
|
||||||
ui->timeCaptured->display( QString( "%1:%2" ).arg( ( ( ( int )recorder.timeCaptured() ) / 60 ) ).arg( ( int )recorder.timeCaptured() % 60 ) );
|
ui->timeCaptured->display( QString( "%1:%2" ).arg( ( ( ( int )recorder.timeCaptured() ) / 60 ) ).arg( ( int )recorder.timeCaptured() % 60 ) );
|
||||||
}
|
}
|
||||||
|
|
|
@ -39,7 +39,7 @@ class SerialCommunicator : public QObject {
|
||||||
|
|
||||||
void sendBuffer( int buff ) {
|
void sendBuffer( int buff ) {
|
||||||
if ( lastBuff != buff )
|
if ( lastBuff != buff )
|
||||||
write( QByteArray( "B" ) + QString::number( buff ).toUtf8() );
|
write( QByteArray( "B:" ) + QString::number( buff ).toUtf8() );
|
||||||
}
|
}
|
||||||
|
|
||||||
private:
|
private:
|
||||||
|
|
Loading…
Add table
Reference in a new issue