ESPixelStick Firmware
Firmware for the ESPixelStick
Loading...
Searching...
No Matches
OutputUCS8903Uart.hpp
Go to the documentation of this file.
1
#pragma once
2
/*
3
* OutputUCS8903Uart.h - UCS8903 driver code for ESPixelStick UART
4
*
5
* Project: ESPixelStick - An ESP8266 / ESP32 and E1.31 based pixel driver
6
* Copyright (c) 2015 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, bor 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 "
OutputCommon.hpp
"
26
27
#if defined(SUPPORT_OutputProtocol_UCS8903)
28
29
#include "
OutputUCS8903.hpp
"
30
#include "
OutputUart.hpp
"
31
32
class
c_OutputUCS8903Uart :
public
c_OutputUCS8903
33
{
34
public
:
35
// These functions are inherited from c_OutputCommon
36
c_OutputUCS8903Uart (
OM_OutputPortDefinition_t
& OutputPortDefinition,
37
c_OutputMgr::e_OutputProtocolType
outputType);
38
virtual
~c_OutputUCS8903Uart ();
39
40
// functions to be provided by the derived class
41
void
Begin ();
42
uint32_t Poll ();
43
#if defined(ARDUINO_ARCH_ESP32)
44
bool
RmtPoll () {
return
false
;}
45
#endif
// defined(ARDUINO_ARCH_ESP32)
46
void
PauseOutput (
bool
State);
47
bool
SetConfig
(ArduinoJson::JsonObject& jsonConfig);
48
void
GetConfig
(ArduinoJson::JsonObject& jsonConfig);
49
void
GetStatus (ArduinoJson::JsonObject& jsonStatus);
50
51
private
:
52
c_OutputUart
Uart;
53
#ifdef UCS8903_UART_DEBUG_COUNTERS
54
uint32_t NewFrameCounter = 0;
55
uint32_t TimeSinceLastFrameMS = 0;
56
uint32_t TimeLastFrameStartedMS = 0;
57
#endif
// def UCS8903_UART_DEBUG_COUNTERS
58
59
};
// c_OutputUCS8903Uart
60
61
#endif
// defined(SUPPORT_OutputProtocol_UCS8903)
OutputCommon.hpp
OutputUCS8903.hpp
OutputUart.hpp
c_OutputMgr::e_OutputProtocolType
e_OutputProtocolType
Definition
OutputMgr.hpp:78
c_OutputUart
Definition
OutputUart.hpp:33
GetConfig
void GetConfig(JsonObject &json)
Definition
main.cpp:499
SetConfig
void SetConfig(const char *DataString)
Definition
main.cpp:321
OM_OutputPortDefinition_t
Definition
OutputMgrPortDefs.hpp:90
include
output
OutputUCS8903Uart.hpp
Generated by
1.12.0