|
| 1 | +/*---------------------------------------------------------*\ |
| 2 | +| RGBController_BlinkyTape.cpp | |
| 3 | +| | |
| 4 | +| Generic RGB Interface for BlinkyTape Led controller | |
| 5 | +| | |
| 6 | +| Matt Mets (matt@blinkinlabs.com), 07/01/2021 | |
| 7 | +\*---------------------------------------------------------*/ |
| 8 | + |
| 9 | +#include "RGBController_BlinkyTape.h" |
| 10 | + |
| 11 | +RGBController_BlinkyTape::RGBController_BlinkyTape(BlinkyTapeController* controller_ptr) |
| 12 | +{ |
| 13 | + controller = controller_ptr; |
| 14 | + |
| 15 | + name = "BlinkyTape"; |
| 16 | + vendor = "Blinkinlabs"; |
| 17 | + type = DEVICE_TYPE_LEDSTRIP; |
| 18 | + description = "BlinkyTape Controller Device"; |
| 19 | + location = controller->GetLocation(); |
| 20 | + |
| 21 | + mode Direct; |
| 22 | + Direct.name = "Direct"; |
| 23 | + Direct.value = 0; |
| 24 | + Direct.flags = MODE_FLAG_HAS_PER_LED_COLOR; |
| 25 | + Direct.color_mode = MODE_COLORS_PER_LED; |
| 26 | + modes.push_back(Direct); |
| 27 | + |
| 28 | + SetupZones(); |
| 29 | +} |
| 30 | + |
| 31 | +RGBController_BlinkyTape::~RGBController_BlinkyTape() |
| 32 | +{ |
| 33 | + delete controller; |
| 34 | +} |
| 35 | + |
| 36 | +void RGBController_BlinkyTape::SetupZones() |
| 37 | +{ |
| 38 | + zones.clear(); |
| 39 | + leds.clear(); |
| 40 | + |
| 41 | + zone led_zone; |
| 42 | + led_zone.name = "LED Strip"; |
| 43 | + led_zone.type = ZONE_TYPE_LINEAR; |
| 44 | + led_zone.leds_min = 1; |
| 45 | + led_zone.leds_max = 512; |
| 46 | + led_zone.leds_count = 0; |
| 47 | + led_zone.matrix_map = NULL; |
| 48 | + zones.push_back(led_zone); |
| 49 | + |
| 50 | + ResizeZone(0, controller->num_leds); |
| 51 | +} |
| 52 | + |
| 53 | +void RGBController_BlinkyTape::ResizeZone(int zone, int new_size) |
| 54 | +{ |
| 55 | + /*-------------------------------------------------*\ |
| 56 | + | Explicitly cast these to avoid compiler warnings | |
| 57 | + \*-------------------------------------------------*/ |
| 58 | + const unsigned int zone_u = static_cast<unsigned int>(zone); |
| 59 | + const unsigned int new_size_u = static_cast<unsigned int>(new_size); |
| 60 | + |
| 61 | + /*-------------------------------------------------*\ |
| 62 | + | Check that the zone is in bounds | |
| 63 | + \*-------------------------------------------------*/ |
| 64 | + if((zone_u > zones.size()) || (zone < 0)) |
| 65 | + { |
| 66 | + return; |
| 67 | + } |
| 68 | + |
| 69 | + /*-------------------------------------------------*\ |
| 70 | + | And that the new size is in bounds | |
| 71 | + \*-------------------------------------------------*/ |
| 72 | + if((new_size_u > zones.at(zone).leds_max) || (new_size_u < zones.at(zone).leds_min)) |
| 73 | + { |
| 74 | + return; |
| 75 | + } |
| 76 | + |
| 77 | + /*-------------------------------------------------*\ |
| 78 | + | And that there's actually a change | |
| 79 | + \*-------------------------------------------------*/ |
| 80 | + if(zones.at(zone).leds_count == new_size_u) |
| 81 | + { |
| 82 | + return; |
| 83 | + } |
| 84 | + |
| 85 | + /*-------------------------------------------------*\ |
| 86 | + | If the new size is less than the current size, | |
| 87 | + | just chop off the end | |
| 88 | + \*-------------------------------------------------*/ |
| 89 | + if(leds.size() > new_size_u) |
| 90 | + { |
| 91 | + leds.resize(new_size); |
| 92 | + } |
| 93 | + |
| 94 | + /*-------------------------------------------------*\ |
| 95 | + | Otherwise, add new LEDs to the end | |
| 96 | + \*-------------------------------------------------*/ |
| 97 | + if(leds.size() < new_size_u) |
| 98 | + { |
| 99 | + for(size_t led_idx = leds.size(); led_idx < new_size_u; led_idx++) |
| 100 | + { |
| 101 | + led new_led; |
| 102 | + new_led.name = "LED "; |
| 103 | + new_led.name.append(std::to_string(led_idx)); |
| 104 | + |
| 105 | + leds.push_back(new_led); |
| 106 | + } |
| 107 | + } |
| 108 | + |
| 109 | + zones.at(zone).leds_count = new_size; |
| 110 | + |
| 111 | + SetupColors(); |
| 112 | +} |
| 113 | + |
| 114 | +void RGBController_BlinkyTape::DeviceUpdateLEDs() |
| 115 | +{ |
| 116 | + controller->SetLEDs(colors); |
| 117 | +} |
| 118 | + |
| 119 | +void RGBController_BlinkyTape::UpdateZoneLEDs(int /*zone*/) |
| 120 | +{ |
| 121 | + controller->SetLEDs(colors); |
| 122 | +} |
| 123 | + |
| 124 | +void RGBController_BlinkyTape::UpdateSingleLED(int /*led*/) |
| 125 | +{ |
| 126 | + controller->SetLEDs(colors); |
| 127 | +} |
| 128 | + |
| 129 | +void RGBController_BlinkyTape::SetCustomMode() |
| 130 | +{ |
| 131 | + |
| 132 | +} |
| 133 | + |
| 134 | +void RGBController_BlinkyTape::DeviceUpdateMode() |
| 135 | +{ |
| 136 | + |
| 137 | +} |
0 commit comments