Allow both way sync of angles

This commit is contained in:
Rune Harlyk
2024-03-30 16:50:39 +01:00
committed by Rune Harlyk
parent 14c38a1700
commit e0fa434aeb
6 changed files with 87 additions and 17 deletions
+12 -1
View File
@@ -16,6 +16,7 @@
ActuatorStateService::ActuatorStateService(
PsychicHttpServer *server,
NotificationEvents *notificationEvents,
SecurityManager *securityManager
) : _httpEndpoint(
ActuatorState::read,
@@ -32,7 +33,8 @@ ActuatorStateService::ActuatorStateService(
server,
ACTUATOR_SETTINGS_SOCKET_PATH,
securityManager,
AuthenticationPredicates::IS_AUTHENTICATED)
AuthenticationPredicates::IS_AUTHENTICATED),
_notificationEvents(notificationEvents)
{
// Setup actuator hardware
@@ -44,6 +46,15 @@ void ActuatorStateService::begin()
_httpEndpoint.begin();
_webSocketServer.begin();
onConfigUpdated();
xTaskCreatePinnedToCore(
this->_loopImpl, // Function that should be called
"Motion Service", // Name of the task (for debugging)
4096, // Stack size (bytes)
this, // Pass reference to this class instance
(tskIDLE_PRIORITY + 1), // task priority
NULL, // Task handle
ESP32SVELTEKIT_RUNNING_CORE // Pin to application core
);
}
void ActuatorStateService::onConfigUpdated()
+50 -8
View File
@@ -17,14 +17,29 @@
#include <HttpEndpoint.h>
#include <WebSocketServer.h>
#include <NotificationEvents.h>
#define ACTUATOR_SETTINGS_ENDPOINT_PATH "/rest/actuators"
#define ACTUATOR_SETTINGS_SOCKET_PATH "/ws"
#define MOTION_INTERVAL 100
#define MAX_ESP_ANGLE_SIZE 256
enum class MOTION_STATE
{
IDLE,
REST,
STAND,
WALK
};
class ActuatorState
{
public:
int16_t state[12] = {0, 45, -90, 0, 45, -90, 0, 45, -90, 0, 45, -90};
int16_t angles[12] = {0, 45, -90, 0, 45, -90, 0, 45, -90, 0, 45, -90};
int8_t controller[7] = {0, 0, 0, 0, 0, 0 ,0};
MOTION_STATE motionState = MOTION_STATE::IDLE;
static void read(ActuatorState &settings, JsonObject &root)
{
@@ -32,20 +47,25 @@ public:
JsonArray array = root.createNestedArray("data");
for(int i = 0; i < 12; i++)
{
array.add(settings.state[i]);
array.add(settings.angles[i]);
}
}
static StateUpdateResult update(JsonObject &root, ActuatorState &actuatorState)
{
if (root["type"] == "mode") {
if (actuatorState.motionState == (MOTION_STATE)root["data"].as<int>()) return StateUpdateResult::UNCHANGED;
actuatorState.motionState = (MOTION_STATE)root["data"].as<int>();
return StateUpdateResult::UNCHANGED;
}
if (root["type"] != "angles") return StateUpdateResult::UNCHANGED;
JsonArray array = root["data"];
bool changed = false;
for(int i = 0; i < 12; i++)
{
if (actuatorState.state[i] != array[i].as<int16_t>())
if (actuatorState.angles[i] != array[i].as<int16_t>())
{
actuatorState.state[i] = array[i];
actuatorState.angles[i] = array[i];
//changed = true;
}
}
@@ -57,7 +77,7 @@ public:
JsonArray array = root.createNestedArray("angles");
for(int i = 0; i < 12; i++)
{
array.add(settings.state[i]);
array.add(settings.angles[i]);
}
}
@@ -69,9 +89,9 @@ public:
bool changed = false;
for(int i = 0; i < 12; i++)
{
if (actuatorState.state[i] != array[i].as<int16_t>())
if (actuatorState.angles[i] != array[i].as<int16_t>())
{
actuatorState.state[i] = array[i];
actuatorState.angles[i] = array[i];
changed = true;
}
}
@@ -81,9 +101,31 @@ public:
class ActuatorStateService : public StatefulService<ActuatorState> {
public:
ActuatorStateService(PsychicHttpServer *server, SecurityManager *securityManager);
ActuatorStateService(PsychicHttpServer *server, NotificationEvents *notificationEvents, SecurityManager *securityManager);
void begin();
protected:
NotificationEvents *_notificationEvents;
static void _loopImpl(void *_this) { static_cast<ActuatorStateService *>(_this)->_loop(); }
void _loop()
{
TickType_t xLastWakeTime;
xLastWakeTime = xTaskGetTickCount();
while (1)
{
_state.angles[1] = (_state.angles[1] + 5) % 90;
StaticJsonDocument<MAX_ESP_ANGLE_SIZE> doc;
String message;
JsonArray array = doc.createNestedArray("angles");
for(int16_t num : _state.angles) {
array.add(num);
}
doc["mode"] = (int)_state.motionState;
serializeJson(doc, message);
_notificationEvents->send(message, "motion", millis());
vTaskDelayUntil(&xLastWakeTime, MOTION_INTERVAL / portTICK_PERIOD_MS);
}
};
private:
HttpEndpoint<ActuatorState> _httpEndpoint;
WebSocketServer<ActuatorState> _webSocketServer;
+3 -2
View File
@@ -6,9 +6,10 @@
DRAM_ATTR PsychicHttpServer server;
DRAM_ATTR ESP32SvelteKit esp32sveltekit(&server, 120);
DRAM_ATTR ESP32SvelteKit esp32sveltekit(&server, 125);
ActuatorStateService actuatorStateService = ActuatorStateService(&server, esp32sveltekit.getNotificationEvents(), esp32sveltekit.getSecurityManager());
ActuatorStateService actuatorStateService = ActuatorStateService(&server, esp32sveltekit.getSecurityManager());
void setup()