Skip to content

Commit

Permalink
Revert "put common types into namespace"
Browse files Browse the repository at this point in the history
This reverts commit f6e55bf.
  • Loading branch information
timhendriks93 committed Jul 27, 2024
1 parent f6e55bf commit 490e7f3
Show file tree
Hide file tree
Showing 9 changed files with 32 additions and 37 deletions.
2 changes: 1 addition & 1 deletion examples/MultipleScenesSD/MultipleScenesSD.ino
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@

#define SERVO_PIN 3
#define CS_PIN 4
#define SCENE_AMOUNT 2
#define SCENE_AMOUNT = 2

// Servo object to send positions
Servo myServo;
Expand Down
12 changes: 6 additions & 6 deletions src/BlenderServoAnimation.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -322,16 +322,16 @@ Scene *BlenderServoAnimation::getCurrentScene() {
return this->scene;
}

void BlenderServoAnimation::onPositionChange(PositionCallback callback) {
this->servoManager.setPositionCallback(callback);
void BlenderServoAnimation::onPositionChange(pcb positionCallback) {
this->servoManager.setPositionCallback(positionCallback);
}

void BlenderServoAnimation::onModeChange(ModeCallback callback) {
this->modeCallback = callback;
void BlenderServoAnimation::onModeChange(mcb modeCallback) {
this->modeCallback = modeCallback;
}

void BlenderServoAnimation::onSceneChange(SceneCallback callback) {
this->sceneCallback = callback;
void BlenderServoAnimation::onSceneChange(scb sceneCallback) {
this->sceneCallback = sceneCallback;
}

void BlenderServoAnimation::changeMode(byte mode) {
Expand Down
12 changes: 6 additions & 6 deletions src/BlenderServoAnimation.h
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#include "AnimationData.h"
#include "Scene.h"
#include "ServoManager.h"
#include "CommonTypes.h"
#include "typedefs.h"
#include <Arduino.h>
#include <stdarg.h>

Expand Down Expand Up @@ -31,9 +31,9 @@ class BlenderServoAnimation {

void addScene(const byte *data, int size, byte fps, int frames);
void addScene(Stream &stream, byte fps, int frame);
void onPositionChange(PositionCallback callback);
void onModeChange(ModeCallback callback);
void onSceneChange(SceneCallback callback);
void onPositionChange(pcb positionCallback);
void onModeChange(mcb modeCallback);
void onSceneChange(scb sceneCallback);
void run(unsigned long currentMicros = micros());
void play();
void playSingle(byte index);
Expand Down Expand Up @@ -65,8 +65,8 @@ class BlenderServoAnimation {

bool *playedIndexes = nullptr;

ModeCallback modeCallback = nullptr;
SceneCallback sceneCallback = nullptr;
mcb modeCallback = nullptr;
scb sceneCallback = nullptr;

byte mode = MODE_DEFAULT;

Expand Down
10 changes: 0 additions & 10 deletions src/CommonTypes.h

This file was deleted.

8 changes: 4 additions & 4 deletions src/Servo.cpp
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
#include "Servo.h"
#include "CommonTypes.h"
#include "typedefs.h"
#include <Arduino.h>

using BlenderServoAnimationLibrary::Servo;

Servo::Servo(byte id, PositionCallback callback, byte threshold) {
Servo::Servo(byte id, pcb positionCallback, byte threshold) {
this->id = id;
this->positionCallback = positionCallback;
this->setThreshold(threshold);
Expand Down Expand Up @@ -53,8 +53,8 @@ bool Servo::isNeutral() {
return this->currentPosition == this->neutralPosition;
}

void Servo::setPositionCallback(PositionCallback callback) {
this->positionCallback = callback;
void Servo::setPositionCallback(pcb positionCallback) {
this->positionCallback = positionCallback;
}

void Servo::setThreshold(byte value) {
Expand Down
8 changes: 4 additions & 4 deletions src/Servo.h
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#include "CommonTypes.h"
#include "typedefs.h"
#include <Arduino.h>

#ifndef BlenderServoAnimationLibrary_Servo_H
Expand All @@ -9,13 +9,13 @@ namespace BlenderServoAnimationLibrary {
class Servo {

public:
Servo(byte id, PositionCallback callback, byte threshold = 0);
Servo(byte id, pcb positionCallback, byte threshold = 0);

void move(int position, bool useOffset = true);
void moveTowardsNeutral();
void setThreshold(byte value);
void setOffset(int offset);
void setPositionCallback(PositionCallback callback);
void setPositionCallback(pcb positionCallback);

bool isNeutral();

Expand All @@ -32,7 +32,7 @@ class Servo {
int currentPosition = -1;
int offset = 0;

PositionCallback positionCallback = nullptr;
pcb positionCallback = nullptr;

bool positionExceedsThreshold(int position);
};
Expand Down
6 changes: 3 additions & 3 deletions src/ServoManager.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,11 @@ ServoManager::~ServoManager() {
}
}

void ServoManager::setPositionCallback(PositionCallback callback) {
this->positionCallback = callback;
void ServoManager::setPositionCallback(pcb positionCallback) {
this->positionCallback = positionCallback;

for (byte i = 0; i < this->servoAmount; i++) {
this->servos[i]->setPositionCallback(callback);
this->servos[i]->setPositionCallback(positionCallback);
}
}

Expand Down
6 changes: 3 additions & 3 deletions src/ServoManager.h
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#include "AnimationData.h"
#include "Command.h"
#include "Servo.h"
#include "CommonTypes.h"
#include "typedefs.h"
#include <Arduino.h>

#ifndef BlenderServoAnimationLibrary_ServoManager_H
Expand All @@ -14,7 +14,7 @@ class ServoManager {
public:
~ServoManager();

void setPositionCallback(PositionCallback callback);
void setPositionCallback(pcb positionCallback);
void setDefaultThreshold(byte value);
void setThreshold(byte servoId, byte value);
void setOffset(byte servoId, int offset);
Expand All @@ -28,7 +28,7 @@ class ServoManager {

Command command;

PositionCallback positionCallback = nullptr;
pcb positionCallback = nullptr;

byte servoAmount = 0;
byte defaultThreshold = 0;
Expand Down
5 changes: 5 additions & 0 deletions src/typedefs.h
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
#include <Arduino.h>

typedef void (*mcb)(byte, byte); // Mode callback
typedef void (*pcb)(byte, int); // Position callback
typedef void (*scb)(byte, byte); // Scene callback

0 comments on commit 490e7f3

Please sign in to comment.