- CitrineOS core extracted (CSMS OCPP 2.0.1) - OpenOCPP extracted (firmware OCPP 1.6J/2.0.1) - ShapeShifter library installed (pip install -e) - ShapeShifter specification extracted - EVerest extracted TODO updated with progress
55 lines
1.5 KiB
C++
55 lines
1.5 KiB
C++
// SPDX-License-Identifier: Apache-2.0
|
|
// Copyright Pionix GmbH and Contributors to EVerest
|
|
|
|
#include "slacImpl.hpp"
|
|
|
|
#include <everest_api_types/generic/codec.hpp>
|
|
#include <everest_api_types/slac/API.hpp>
|
|
#include <everest_api_types/slac/codec.hpp>
|
|
|
|
namespace module {
|
|
namespace main {
|
|
|
|
using namespace everest::lib::API;
|
|
namespace generic = everest::lib::API::V1_0::types::generic;
|
|
|
|
void slacImpl::init() {
|
|
}
|
|
|
|
void slacImpl::ready() {
|
|
}
|
|
|
|
void slacImpl::handle_reset(bool& enable) {
|
|
static const auto topic = mod->helper.get_topics().everest_to_extern("reset");
|
|
const auto data = generic::serialize(enable);
|
|
mod->mqtt_v.publish(topic, data);
|
|
}
|
|
|
|
void slacImpl::handle_enter_bcd() {
|
|
static const auto topic = mod->helper.get_topics().everest_to_extern("enter_bcd");
|
|
mod->mqtt_v.publish(topic, "{}");
|
|
}
|
|
|
|
void slacImpl::handle_leave_bcd() {
|
|
static const auto topic = mod->helper.get_topics().everest_to_extern("leave_bcd");
|
|
mod->mqtt_v.publish(topic, "{}");
|
|
}
|
|
|
|
void slacImpl::handle_dlink_terminate() {
|
|
static const auto topic = mod->helper.get_topics().everest_to_extern("dlink_terminate");
|
|
mod->mqtt_v.publish(topic, "{}");
|
|
}
|
|
|
|
void slacImpl::handle_dlink_error() {
|
|
static const auto topic = mod->helper.get_topics().everest_to_extern("dlink_error");
|
|
mod->mqtt_v.publish(topic, "{}");
|
|
}
|
|
|
|
void slacImpl::handle_dlink_pause() {
|
|
static const auto topic = mod->helper.get_topics().everest_to_extern("dlink_pause");
|
|
mod->mqtt_v.publish(topic, "{}");
|
|
}
|
|
|
|
} // namespace main
|
|
} // namespace module
|