ESPixelStick Firmware
Firmware for the ESPixelStick
Loading...
Searching...
No Matches
OutputWS2811Uart.hpp
Go to the documentation of this file.
1#pragma once
2/*
3* OutputWS2811Uart.h - WS2811 driver code for ESPixelStick UART
4*
5* Project: ESPixelStick - An ESP8266 / ESP32 and E1.31 based pixel driver
6* Copyright (c) 2015, 2022 Shelby Merrick
7* http://www.forkineye.com
8*
9* This program is provided free for you to use in any way that you wish,
10* subject to the laws and regulations where you are using it. Due diligence
11* is strongly suggested before using this code. Please give credit where due.
12*
13* The Author makes no warranty of any kind, express or implied, with regard
14* to this program or the documentation contained in this document. The
15* Author shall not be liable in any event for incidental or consequential
16* damages in connection with, or arising out of, the furnishing, performance
17* or use of these programs.
18*
19* This is a derived class that converts data in the output buffer into
20* pixel intensities and then transmits them through the configured serial
21* interface.
22*
23*/
24
25#include "ESPixelStick.h"
26#if defined(SUPPORT_OutputType_WS2811)
27
28#include "OutputWS2811.hpp"
29#include "OutputUart.hpp"
30
31class c_OutputWS2811Uart : public c_OutputWS2811
32{
33public:
34 // These functions are inherited from c_OutputCommon
35 c_OutputWS2811Uart (c_OutputMgr::e_OutputChannelIds OutputChannelId,
36 gpio_num_t outputGpio,
37 uart_port_t uart,
38 c_OutputMgr::e_OutputType outputType);
39 virtual ~c_OutputWS2811Uart ();
40
41 // functions to be provided by the derived class
42 void Begin ();
43 uint32_t Poll ();
44#if defined(ARDUINO_ARCH_ESP32)
45 bool RmtPoll () {return false;}
46#endif // defined(ARDUINO_ARCH_ESP32)
47 void PauseOutput (bool State);
48 bool SetConfig (ArduinoJson::JsonObject& jsonConfig);
49 void GetConfig (ArduinoJson::JsonObject& jsonConfig);
50 void GetStatus (ArduinoJson::JsonObject& jsonStatus);
51
52#define WS2811_NUM_DATA_BYTES_PER_INTENSITY_BYTE 4
53
54private:
55 c_OutputUart Uart;
56#ifdef WS2811_UART_DEBUG_COUNTERS
57 uint32_t NewFrameCounter = 0;
58 uint32_t TimeSinceLastFrameMS = 0;
59 uint32_t TimeLastFrameStartedMS = 0;
60#endif // def WS2811_UART_DEBUG_COUNTERS
61
62}; // c_OutputWS2811Uart
63
64#endif // defined(SUPPORT_OutputType_WS2811)
e_OutputChannelIds
Definition OutputMgr.hpp:67
e_OutputType
Definition OutputMgr.hpp:126
Definition OutputUart.hpp:33
void GetConfig(JsonObject &json)
Definition main.cpp:440
void SetConfig(const char *DataString)
Definition main.cpp:286