Skip to content
Permalink
6b251c1401
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
31 lines (24 sloc) 694 Bytes
#ifndef TACTOR_OUTPUT_IO_PROCESSOR_HPP
#define TACTOR_OUTPUT_IO_PROCESSOR_HPP
#include <map>
#include "IOProcessor.hpp"
#include "DataSyncThread.hpp"
#include "Attribute.hpp"
#include "BreadcrumbsConstants.hpp"
#include "TactorInterface.h"
#include "ResponseHelper.h"
class TactorOutputIOProcessor : public IOProcessor
{
public:
using IOProcessor::IOProcessor;
void loop();
bool loopCondition();
double getTactorDistance(double tactorA, double tactorB, int tactorNumber);
void pulseTactors(double degree, int tactorNumber, int pulseRadius);
void checkForError(int errorCode);
int initializeController();
private:
bool isControllerInit = false;
double tactorDegree = 0;
};
#endif