mirror of
https://github.com/openshwprojects/OpenBK7231T_App.git
synced 2026-02-06 13:15:43 +00:00
276 lines
7.6 KiB
Markdown
276 lines
7.6 KiB
Markdown
# Example 'autoexec.bat' files
|
|
|
|
|
|
[Configuration for EDM-01AA-EU dimmer with TuyaMCU](https://www.elektroda.com/rtvforum/topic3929151.html)
|
|
<br>
|
|
```startDriver TuyaMCU
|
|
setChannelType 1 toggle
|
|
setChannelType 2 dimmer
|
|
tuyaMcu_setBaudRate 115200
|
|
tuyaMcu_setDimmerRange 1 1000
|
|
// linkTuyaMCUOutputToChannel dpId verType tgChannel
|
|
linkTuyaMCUOutputToChannel 1 bool 1
|
|
linkTuyaMCUOutputToChannel 2 val 2
|
|
```
|
|
|
|
|
|
[Configuration for QIACHIP Universal WIFI Ceiling Fan Light Remote Control Kit - BK7231N - CB2S with TuyaMCU](https://www.elektroda.com/rtvforum/topic3895301.html)
|
|
<br>
|
|
```// start MCU driver
|
|
startDriver TuyaMCU
|
|
// let's say that channel 1 is dpid1 - fan on/off
|
|
setChannelType 1 toggle
|
|
// map dpid1 to channel1, var type 1 (boolean)
|
|
linkTuyaMCUOutputToChannel 1 1 1
|
|
// let's say that channel 2 is dpid9 - light on/off
|
|
setChannelType 2 toggle
|
|
// map dpid9 to channel2, var type 1 (boolean)
|
|
linkTuyaMCUOutputToChannel 9 1 2
|
|
//channel 3 is dpid3 - fan speed
|
|
setChannelType 3 LowMidHigh
|
|
// map dpid3 to channel3, var type 4 (enum)
|
|
linkTuyaMCUOutputToChannel 3 4 3
|
|
//dpId 17 = beep on/off
|
|
setChannelType 4 toggle
|
|
linkTuyaMCUOutputToChannel 17 1 4
|
|
//
|
|
//
|
|
//dpId 6, dataType 4-DP_TYPE_ENUM = set timer
|
|
setChannelType 5 TextField
|
|
linkTuyaMCUOutputToChannel 6 4 5
|
|
//
|
|
//
|
|
//dpId 7, dataType 2-DP_TYPE_VALUE = timer remaining
|
|
setChannelType 6 ReadOnly
|
|
linkTuyaMCUOutputToChannel 7 2 6
|
|
```
|
|
|
|
|
|
[Configuration for BK7231T LCD calendar/thermometer/hygrometer TH06 WiFi for TuyaMCU](https://www.elektroda.com/rtvforum/viewtopic.php?p=20342890#20342890)
|
|
<br>
|
|
```
|
|
startDriver TuyaMCU
|
|
startDriver NTP
|
|
// dpID 1 is tempererature div 10
|
|
setChannelType 1 temperature_div10
|
|
linkTuyaMCUOutputToChannel 1 val 1
|
|
// dpID 2 is % humidity
|
|
setChannelType 2 Humidity
|
|
linkTuyaMCUOutputToChannel 2 val 2
|
|
```
|
|
|
|
|
|
[Configuration for controlling LED strip with IR receiver by TV Remote](https://www.elektroda.com/rtvforum/topic3944210.html)
|
|
<br>
|
|
```// You must set IRRecv role for one of the pins
|
|
// IR driver will start itself automatically after reboot
|
|
|
|
// P21 role is Btn, a power button that works without scripting
|
|
// set button hold/repeat/etc times
|
|
SetButtonTimes 10 3 3
|
|
// alias to turn off LED after 4 secs (repeating event with 1 repeat)
|
|
alias add_turnoff_event addRepeatingEvent 4 1 led_enableAll 0
|
|
// button events - 23, 22, etc are pin numbers
|
|
addEventHandler OnHold 23 add_dimmer 10
|
|
addEventHandler OnHold 22 add_dimmer -10
|
|
addEventHandler OnDblClick 22 led_dimmer 5
|
|
addEventHandler OnDblClick 23 led_dimmer 100
|
|
addEventHandler OnClick 20 add_turnoff_event
|
|
// IR events
|
|
addEventHandler2 IR_Samsung 0x707 0x62 add_dimmer 10
|
|
addEventHandler2 IR_Samsung 0x707 0x65 add_dimmer -10
|
|
addEventHandler2 IR_Samsung 0x707 0x61 led_enableAll 0
|
|
addEventHandler2 IR_Samsung 0x707 0x60 led_enableAll 1
|
|
```
|
|
|
|
|
|
[Configuration for controlling Tuya 5 Speed Fan Controller by TEQOOZ - Home Assistant](https://www.elektroda.com/rtvforum/topic3908093.html)
|
|
<br>
|
|
```
|
|
// start MCU driver
|
|
startDriver TuyaMCU
|
|
|
|
// fan on/off channel
|
|
setChannelType 1 toggle
|
|
|
|
//fan speed channel
|
|
setChannelType 3 OffLowestLowMidHighHighest
|
|
|
|
// child Lock channel
|
|
setChannelType 14 toggle
|
|
|
|
// countdown channel
|
|
setChannelType 22 TextField
|
|
|
|
// remaining timer channel
|
|
setChannelType 23 TextField
|
|
|
|
// link output 1 to channel 1
|
|
linkTuyaMCUOutputToChannel 1 1 1
|
|
|
|
// link output 3 to channel 3
|
|
linkTuyaMCUOutputToChannel 3 2 3
|
|
|
|
// link output 14 to channel 14
|
|
linkTuyaMCUOutputToChannel 14 1 14
|
|
|
|
// link output 22 to channel 22
|
|
linkTuyaMCUOutputToChannel 22 2 22
|
|
|
|
// link output 23 to channel 23
|
|
linkTuyaMCUOutputToChannel 23 2 23
|
|
```
|
|
|
|
|
|
[Configuration for controlling BlitzWolf BW-AF1 air fryer](https://www.elektroda.com/rtvforum/viewtopic.php?p=20448156#20448156)
|
|
<br>
|
|
```
|
|
startDriver TuyaMCU
|
|
|
|
// cook on/off
|
|
setChannelType 1 Toggle
|
|
setChannelLabel 1 "Cook"
|
|
linkTuyaMCUOutputToChannel 111 bool 1
|
|
// power on/off
|
|
setChannelLabel 2 "Power"
|
|
setChannelType 2 Toggle
|
|
linkTuyaMCUOutputToChannel 101 bool 2
|
|
|
|
// set temperature
|
|
setChannelLabel 3 "New Temperature"
|
|
setChannelType 3 TextField
|
|
linkTuyaMCUOutputToChannel 103 val 3
|
|
|
|
// currenttemperature
|
|
setChannelLabel 4 "Current Temperature"
|
|
setChannelType 4 ReadOnly
|
|
linkTuyaMCUOutputToChannel 104 val 4
|
|
|
|
// set time
|
|
setChannelLabel 5 "New Time"
|
|
setChannelType 5 TextField
|
|
linkTuyaMCUOutputToChannel 105 val 5
|
|
|
|
// read time
|
|
setChannelLabel 6 "Current Time"
|
|
setChannelType 6 ReadOnly
|
|
linkTuyaMCUOutputToChannel 106 val 6
|
|
|
|
|
|
alias cook185c15min backlog setChannel 2 1; setChannel 3 185; setChannel 5 15; setChannel 1 1
|
|
alias cook170c30min backlog setChannel 2 1; setChannel 3 170; setChannel 5 30; setChannel 1 1
|
|
|
|
|
|
|
|
startDriver httpButtons
|
|
setButtonEnabled 0 1
|
|
setButtonLabel 0 "Set 185C 15minutes"
|
|
setButtonCommand 0 "cook185c15min "
|
|
setButtonColor 0 "orange"
|
|
|
|
|
|
setButtonEnabled 1 1
|
|
setButtonLabel 1 "Set 170C 30minutes"
|
|
setButtonCommand 1 "cook170c30min "
|
|
setButtonColor 1 "orange"
|
|
|
|
|
|
|
|
```
|
|
|
|
|
|
[Configuration for Tuya ATORCH AT4P(WP/BW) Smartlife Energy monitor (BK7231N/C3BS/CH573F/BL0924)](https://www.elektroda.com/rtvforum/topic3941692.html)
|
|
<br>
|
|
```
|
|
startDriver TuyaMCU
|
|
startDriver NTP
|
|
tuyaMcu_setBaudRate 115200
|
|
setChannelType 1 toggle
|
|
setChannelType 2 Voltage_div10
|
|
setChannelType 3 Power
|
|
setChannelType 4 Current_div1000
|
|
setChannelType 5 Frequency_div100
|
|
setChannelType 6 ReadOnly
|
|
setChannelType 7 Temperature
|
|
setChannelType 8 ReadOnly
|
|
setChannelType 9 ReadOnly
|
|
|
|
//ch 1 (dpid 1) power relay control
|
|
linkTuyaMCUOutputToChannel 1 bool 1
|
|
//ch 2(dpid 20) voltage
|
|
linkTuyaMCUOutputToChannel 20 1 2
|
|
//ch 3(dpid 19) power watts
|
|
linkTuyaMCUOutputToChannel 19 1 3
|
|
//ch 4 (dpid 18)current Amps
|
|
linkTuyaMCUOutputToChannel 18 1 4
|
|
//ch 5 (dpid (133) frequency
|
|
linkTuyaMCUOutputToChannel 133 1 5
|
|
//ch 6 (dpid 102) energy cost used
|
|
linkTuyaMCUOutputToChannel 102 1 6
|
|
// ch 7 (dpid 135) temp
|
|
linkTuyaMCUOutputToChannel 135 1 7
|
|
//ch 8 (dpid 134) power factor
|
|
linkTuyaMCUOutputToChannel 134 raw 8
|
|
//ch 9 (dpid 123) energy consumed
|
|
linkTuyaMCUOutputToChannel 123 1 9
|
|
```
|
|
|
|
|
|
[Configuration for 4x socket + 1x USB power strip with a single button (double click, triple, etc)](https://www.elektroda.com/rtvforum/topic3941692.html)
|
|
<br>
|
|
```// channels 1 to 5 are used
|
|
setChannelType 1 toggle
|
|
setChannelType 2 toggle
|
|
setChannelType 3 toggle
|
|
setChannelType 4 toggle
|
|
setChannelType 5 toggle
|
|
// Btn_ScriptOnly is set on P26
|
|
addEventHandler OnClick 26 ToggleChannel 1
|
|
addEventHandler OnDblClick 26 ToggleChannel 2
|
|
addEventHandler On3Click 26 ToggleChannel 3
|
|
addEventHandler On4Click 26 ToggleChannel 4
|
|
addEventHandler On5Click 26 ToggleChannel 5
|
|
```
|
|
|
|
|
|
Simple example showing how to do MQTT publish on button event (double click, etc). It also includes button hold event to adjust dimmer.
|
|
<br>
|
|
```// A simple script per user request.
|
|
// Device has single button on P26
|
|
// Device also has a relay or a light
|
|
|
|
// Btn_ScriptOnly is set on P26
|
|
// click toggles power
|
|
addEventHandler OnClick 26 POWER TOGGLE
|
|
// remaining events do MQTT publishes
|
|
// NOTE: publish [topicName] [payload]. Final topic will be like obk0696FB33/[Topic]/get
|
|
addEventHandler OnDblClick 26 publish myClickIs doubleClick
|
|
addEventHandler On3Click 26 publish myClickIs tripleClick
|
|
addEventHandler On4Click 26 publish myClickIs quadraClick
|
|
addEventHandler On5Click 26 publish myClickIs pentaClick
|
|
|
|
// NOTE: if you want also to have button hold, and this device
|
|
// is a LED device, you can use:
|
|
addEventHandler OnHold 26 led_addDimmer 10 1
|
|
// note: led_addDimmer [Delta] [Mode], mode 2 means ping pong
|
|
|
|
|
|
```
|
|
|
|
|
|
Basic Ping Watchdog usage. Ping given IP with given interval and run script if there was no ping reply within given time.
|
|
<br>
|
|
```
|
|
// this is autoexec.bat, it runs at startup, you should restart after making changes
|
|
// target to ping
|
|
PingHost 192.168.0.1
|
|
// interval in seconds
|
|
PingInterval 10
|
|
// events to run when no ping happens
|
|
addChangeHandler noPingTime > 600 reboot
|
|
|
|
|
|
```
|
|
|
|
|