Browse Source

„src/TactiloController/ovpCBoxAlgorithmTactiloController.cpp“ ändern

master
Tobias Baumann 1 year ago
parent
commit
70d5a8043d
1 changed files with 4 additions and 4 deletions
  1. 4
    4
      src/TactiloController/ovpCBoxAlgorithmTactiloController.cpp

+ 4
- 4
src/TactiloController/ovpCBoxAlgorithmTactiloController.cpp View File

@@ -115,13 +115,13 @@ bool CBoxAlgorithmTactiloController::process()
}
if(StimulationID == OVTK_StimulationId_VisualStimulationStart)
{
this->getLogManager() << LogLevel_Info << "Tactilo Nr. " << m_currTactiloNr << " ON\n";
m_Port.write_some(boost::asio::buffer(std::to_string(m_currTactiloNr)));
this->getLogManager() << LogLevel_Debug << "Tactilo Nr. " << m_currTactiloNr << " ON\n";
m_Port.write_some(boost::asio::buffer(std::to_string(m_currTactiloNr-1)));
}
if(StimulationID == OVTK_StimulationId_VisualStimulationStop)
{
this->getLogManager() << LogLevel_Info << "Tactilo Nr. " << m_currTactiloNr << " OFF\n";
m_Port.write_some(boost::asio::buffer(std::to_string(m_currTactiloNr)));
this->getLogManager() << LogLevel_Debug << "Tactilo Nr. " << m_currTactiloNr << " OFF\n";
m_Port.write_some(boost::asio::buffer(std::to_string(m_currTactiloNr-1)));
}
}
}

Loading…
Cancel
Save