| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204 |
- #include <MiLightClient.h>
- #include <MiLightRadioConfig.h>
- #include <Arduino.h>
- MiLightRadio* MiLightClient::switchRadio(const MiLightRadioType type) {
- RadioStack* stack = NULL;
-
- for (int i = 0; i < numRadios; i++) {
- if (radios[i]->config.type == type) {
- stack = radios[i];
- break;
- }
- }
-
- if (stack != NULL) {
- MiLightRadio *radio = stack->getRadio();
-
- if (currentRadio->config.type != stack->config.type) {
- radio->configure();
- }
-
- currentRadio = stack;
- formatter = stack->config.packetFormatter;
- return radio;
- } else {
- Serial.print("MiLightClient - tried to get radio for unknown type: ");
- Serial.println(type);
- }
-
- return NULL;
- }
- void MiLightClient::prepare(MiLightRadioConfig& config,
- const uint16_t deviceId,
- const uint8_t groupId) {
-
- switchRadio(config.type);
-
- if (deviceId >= 0 && groupId >= 0) {
- formatter->prepare(deviceId, groupId);
- }
- }
- void MiLightClient::setResendCount(const unsigned int resendCount) {
- this->resendCount = resendCount;
- }
- bool MiLightClient::available() {
- if (currentRadio == NULL) {
- return false;
- }
-
- return currentRadio->getRadio()->available();
- }
- void MiLightClient::read(uint8_t packet[]) {
- if (currentRadio == NULL) {
- return;
- }
-
- size_t length;
- currentRadio->getRadio()->read(packet, length);
- }
- void MiLightClient::write(uint8_t packet[]) {
- if (currentRadio == NULL) {
- return;
- }
-
- #ifdef DEBUG_PRINTF
- printf("Sending packet: ");
- for (int i = 0; i < currentRadio->config.getPacketLength(); i++) {
- printf("%02X", packet[i]);
- }
- printf("\n");
- #endif
-
- for (int i = 0; i < this->resendCount; i++) {
- currentRadio->getRadio()->write(packet, currentRadio->config.getPacketLength());
- }
- }
-
- void MiLightClient::updateColorRaw(const uint8_t color) {
- formatter->updateColorRaw(color);
- flushPacket();
- }
- void MiLightClient::updateHue(const uint16_t hue) {
- formatter->updateHue(hue);
- flushPacket();
- }
- void MiLightClient::updateBrightness(const uint8_t brightness) {
- formatter->updateBrightness(brightness);
- flushPacket();
- }
-
- void MiLightClient::updateStatus(MiLightStatus status, uint8_t groupId) {
- formatter->updateStatus(status, groupId);
- flushPacket();
- }
- void MiLightClient::updateStatus(MiLightStatus status) {
- formatter->updateStatus(status);
- flushPacket();
- }
- void MiLightClient::updateSaturation(const uint8_t value) {
- formatter->updateSaturation(value);
- flushPacket();
- }
- void MiLightClient::updateColorWhite() {
- formatter->updateColorWhite();
- flushPacket();
- }
- void MiLightClient::pair() {
- for (size_t i = 0; i < 5; i++) {
- formatter->updateStatus(ON);
- flushPacket();
- delay(1);
- }
- }
- void MiLightClient::unpair() {
- const MiLightRadioType type = currentRadio->config.type;
-
- if (type == RGBW) {
- formatter->updateStatus(ON);
- flushPacket();
- yield();
- formatter->updateColorWhite();
- flushPacket();
- } else if (type == CCT) {
- for (int i = 0; i < 5; i++) {
- formatter->updateStatus(ON);
- flushPacket();
- delay(1);
- }
- } else if (type == RGB_CCT) {
- for (int i = 0; i < 5; i++) {
- formatter->updateStatus(ON, 0);
- flushPacket();
- delay(1);
- }
- }
- }
-
- void MiLightClient::increaseBrightness() {
- formatter->increaseBrightness();
- flushPacket();
- }
- void MiLightClient::decreaseBrightness() {
- formatter->decreaseBrightness();
- flushPacket();
- }
- void MiLightClient::increaseTemperature() {
- formatter->increaseTemperature();
- flushPacket();
- }
- void MiLightClient::decreaseTemperature() {
- formatter->decreaseTemperature();
- flushPacket();
- }
- void MiLightClient::updateTemperature(const uint8_t temperature) {
- formatter->updateTemperature(temperature);
- flushPacket();
- }
- void MiLightClient::command(uint8_t command, uint8_t arg) {
- formatter->command(command, arg);
- flushPacket();
- }
- void MiLightClient::formatPacket(uint8_t* packet, char* buffer) {
- formatter->format(packet, buffer);
- }
-
- void MiLightClient::flushPacket() {
- PacketStream& stream = formatter->buildPackets();
- const size_t prevNumRepeats = this->resendCount;
-
- // When sending multiple packets, normalize the number of repeats
- if (stream.numPackets > 1) {
- setResendCount(MILIGHT_DEFAULT_RESEND_COUNT);
- }
-
- while (stream.hasNext()) {
- write(stream.next());
-
- if (stream.hasNext()) {
- delay(10);
- }
- }
-
- setResendCount(prevNumRepeats);
- formatter->reset();
- }
|