mirror of
https://github.com/arendst/Tasmota.git
synced 2025-07-23 18:56:38 +00:00
Add support for NEC and OPTOMA LCD/DLP Projector serial power control
Add support for NEC and OPTOMA LCD/DLP Projector serial power control by Jan Bubík (#11145)
This commit is contained in:
parent
38e29df1b4
commit
4d3fda5a74
@ -8,6 +8,7 @@ All notable changes to this project will be documented in this file.
|
|||||||
- Allow MCP230xx pinmode from output to input (#11104)
|
- Allow MCP230xx pinmode from output to input (#11104)
|
||||||
- SML VBUS support (#11125)
|
- SML VBUS support (#11125)
|
||||||
- Command ``Sensor80 1 <0..7>`` to control MFRC522 RFID antenna gain from 18dB (0) to 48dB (7) (#11073)
|
- Command ``Sensor80 1 <0..7>`` to control MFRC522 RFID antenna gain from 18dB (0) to 48dB (7) (#11073)
|
||||||
|
- Support for NEC and OPTOMA LCD/DLP Projector serial power control by Jan Bubík (#11145)
|
||||||
|
|
||||||
### Changed
|
### Changed
|
||||||
- TuyaMcu dimmer timeout (#11121)
|
- TuyaMcu dimmer timeout (#11121)
|
||||||
|
@ -80,9 +80,10 @@ The attached binaries can also be downloaded from http://ota.tasmota.com/tasmota
|
|||||||
|
|
||||||
## Changelog v9.3.1.1
|
## Changelog v9.3.1.1
|
||||||
### Added
|
### Added
|
||||||
- Allow MCP230xx pinmode from output to input [#11104](https://github.com/arendst/Tasmota/issues/11104)
|
|
||||||
- SML VBUS support [#11125](https://github.com/arendst/Tasmota/issues/11125)
|
|
||||||
- Command ``Sensor80 1 <0..7>`` to control MFRC522 RFID antenna gain from 18dB (0) to 48dB (7) [#11073](https://github.com/arendst/Tasmota/issues/11073)
|
- Command ``Sensor80 1 <0..7>`` to control MFRC522 RFID antenna gain from 18dB (0) to 48dB (7) [#11073](https://github.com/arendst/Tasmota/issues/11073)
|
||||||
|
- Support for SML VBUS [#11125](https://github.com/arendst/Tasmota/issues/11125)
|
||||||
|
- Support for NEC and OPTOMA LCD/DLP Projector serial power control by Jan Bubík [#11145](https://github.com/arendst/Tasmota/issues/11145)
|
||||||
|
- Allow MCP230xx pinmode from output to input [#11104](https://github.com/arendst/Tasmota/issues/11104)
|
||||||
|
|
||||||
### Changed
|
### Changed
|
||||||
- TuyaMcu dimmer timeout [#11121](https://github.com/arendst/Tasmota/issues/11121)
|
- TuyaMcu dimmer timeout [#11121](https://github.com/arendst/Tasmota/issues/11121)
|
||||||
|
@ -677,9 +677,9 @@
|
|||||||
#define USE_TASMOTA_CLIENT_SERIAL_SPEED 57600 // Depends on the sketch that is running on the Uno/Pro Mini
|
#define USE_TASMOTA_CLIENT_SERIAL_SPEED 57600 // Depends on the sketch that is running on the Uno/Pro Mini
|
||||||
//#define USE_OPENTHERM // Add support for OpenTherm (+15k code)
|
//#define USE_OPENTHERM // Add support for OpenTherm (+15k code)
|
||||||
//#define USE_MIEL_HVAC // Add support for Mitsubishi Electric HVAC serial interface (+5k code)
|
//#define USE_MIEL_HVAC // Add support for Mitsubishi Electric HVAC serial interface (+5k code)
|
||||||
//#define USE_PROJECTOR_CTRL // Add support for LCD/DLP Projector serial control interface (+1k code)
|
//#define USE_PROJECTOR_CTRL // Add support for LCD/DLP Projector serial control interface (+2k code)
|
||||||
//#define USE_PROJECTOR_CTRL_NEC // Use codes for NEC
|
// #define USE_PROJECTOR_CTRL_NEC // Use codes for NEC
|
||||||
//#define USE_PROJECTOR_CTRL_OPTOMA // Use codes for OPTOMA
|
// #define USE_PROJECTOR_CTRL_OPTOMA // Use codes for OPTOMA
|
||||||
//#define USE_AS608 // Add support for AS608 optical and R503 capacitive fingerprint sensor (+3k code)
|
//#define USE_AS608 // Add support for AS608 optical and R503 capacitive fingerprint sensor (+3k code)
|
||||||
// #define USE_AS608_MESSAGES // Add verbose error messages (+0k4 code)
|
// #define USE_AS608_MESSAGES // Add verbose error messages (+0k4 code)
|
||||||
|
|
||||||
|
@ -178,9 +178,9 @@
|
|||||||
//#define USE_TASMOTA_CLIENT // Add support for Arduino Uno/Pro Mini via serial interface including flashing (+2k3 code, 44 mem)
|
//#define USE_TASMOTA_CLIENT // Add support for Arduino Uno/Pro Mini via serial interface including flashing (+2k3 code, 44 mem)
|
||||||
//#define USE_OPENTHERM // Add support for OpenTherm (+15k code)
|
//#define USE_OPENTHERM // Add support for OpenTherm (+15k code)
|
||||||
//#define USE_MIEL_HVAC // Add support for Mitsubishi Electric HVAC serial interface (+5k code)
|
//#define USE_MIEL_HVAC // Add support for Mitsubishi Electric HVAC serial interface (+5k code)
|
||||||
//#define USE_PROJECTOR_CTRL // Add support for LCD/DLP Projector serial control interface (+1k code)
|
//#define USE_PROJECTOR_CTRL // Add support for LCD/DLP Projector serial control interface (+2k code)
|
||||||
//#define USE_PROJECTOR_CTRL_NEC // Use codes for NEC
|
// #define USE_PROJECTOR_CTRL_NEC // Use codes for NEC
|
||||||
//#define USE_PROJECTOR_CTRL_OPTOMA // Use codes for OPTOMA
|
// #define USE_PROJECTOR_CTRL_OPTOMA // Use codes for OPTOMA
|
||||||
//#define USE_AS608 // Add support for AS608 optical and R503 capacitive fingerprint sensor (+3k4 code)
|
//#define USE_AS608 // Add support for AS608 optical and R503 capacitive fingerprint sensor (+3k4 code)
|
||||||
|
|
||||||
#define USE_ENERGY_SENSOR // Add energy sensors (-14k code)
|
#define USE_ENERGY_SENSOR // Add energy sensors (-14k code)
|
||||||
@ -436,7 +436,6 @@
|
|||||||
#undef USE_MIEL_HVAC // Disable support for Mitsubishi Electric HVAC serial interface (+5k code)
|
#undef USE_MIEL_HVAC // Disable support for Mitsubishi Electric HVAC serial interface (+5k code)
|
||||||
#undef USE_PROJECTOR_CTRL // Disable support for LCD/DLP Projector serial control interface
|
#undef USE_PROJECTOR_CTRL // Disable support for LCD/DLP Projector serial control interface
|
||||||
|
|
||||||
|
|
||||||
#undef USE_DHT // Disable support for DHT11, AM2301 (DHT21, DHT22, AM2302, AM2321) and SI7021 Temperature and Humidity sensor
|
#undef USE_DHT // Disable support for DHT11, AM2301 (DHT21, DHT22, AM2302, AM2321) and SI7021 Temperature and Humidity sensor
|
||||||
#undef USE_MAX31855 // Disable MAX31855 K-Type thermocouple sensor using softSPI
|
#undef USE_MAX31855 // Disable MAX31855 K-Type thermocouple sensor using softSPI
|
||||||
#undef USE_MAX31865 // Disable support for MAX31865 RTD sensors using softSPI
|
#undef USE_MAX31865 // Disable support for MAX31865 RTD sensors using softSPI
|
||||||
|
@ -27,6 +27,10 @@
|
|||||||
|
|
||||||
#define XDRV_53 53
|
#define XDRV_53 53
|
||||||
|
|
||||||
|
#ifndef USE_PROJECTOR_CTRL_NEC
|
||||||
|
#define USE_PROJECTOR_CTRL_NEC // Use at least one projector
|
||||||
|
#endif
|
||||||
|
|
||||||
#define nitems(_a) (sizeof((_a)) / sizeof((_a)[0]))
|
#define nitems(_a) (sizeof((_a)) / sizeof((_a)[0]))
|
||||||
#define xxstr(s) xstr(s)
|
#define xxstr(s) xstr(s)
|
||||||
#define xstr(s) #s
|
#define xstr(s) #s
|
||||||
|
Loading…
x
Reference in New Issue
Block a user