/// <summary>
        /// Translates a for blink1.
        /// </summary>
        /// <param name="request">The request.</param>
        /// <param name="featureReportByteLength">Length of the feature report byte.</param>
        /// <returns>
        /// An array of byte arrays (commands).
        /// </returns>
        public static byte[] TranslateForBlink1(BuildActiveRequest request, short featureReportByteLength)
        {
            if (request.IsBuildsActive)
            {
                // Yellow
                return PackBlink1FadeToColorBytes(255, 210, 0, FadeMilliseconds, featureReportByteLength);
            }

            throw new InvalidTranslationRequestException(string.Format("The request type is not one that can be translated: {0}", request.GetType()));
        }