1
0
mirror of https://github.com/Utyff/Zintercom.git synced 2026-01-12 17:27:42 +03:00

4 Commits
1.0.2 ... 1.0.3

Author SHA1 Message Date
lost
e58b8a0f97 added TimeBell attribute than means time after last bell to finish ring 2021-06-15 15:29:00 +03:00
lost
0439847dd5 Merge branch 'master' of github.com:diyruz/Zintercom into master 2021-06-15 13:56:44 +03:00
lost
a34f4319d9 events' timers reworked 2021-06-15 13:56:25 +03:00
xyzroe
c9ff7819b2 Update README.md
Added:
1. Error description about Gerber PCB v1.0 committed on Apr 14
2. Image and link to the 3d model of the case.
2021-06-14 14:12:34 +03:00
5 changed files with 63 additions and 25 deletions

View File

@@ -21,6 +21,17 @@ You can control sound mode using z2m or by long press the button. (1000ms < X <
After pressing the button, the LED will flash at 1.5 Hz. After pressing the button, the LED will flash at 1.5 Hz.
One flash - OFF, two flashes - ON. One flash - OFF, two flashes - ON.
## Important info
In Gerber PCB v1.0 committed on Apr 14, there are some errors in the silkscreen layers:
1. 'Line-' and 'Phone-' are reversed.
2. '+' and '-' are also reversed.
Just plug by swapping.
### How to join ### How to join
Reset to FN by reboot device 5 times with interval less than 10 seconds. Reset to FN by reboot device 5 times with interval less than 10 seconds.
Reset to FN by press and hold BTN for 5 seconds. Reset to FN by press and hold BTN for 5 seconds.
@@ -83,7 +94,9 @@ For example, you can turn on the light while a call comes to the intercom, for n
### Files to reproduce ### Files to reproduce
* [Gerbers and BOM](https://github.com/diyruz/Zintercom/tree/master/hardware) by [xyzroe](https://t.me/xyzroe) * [Gerbers and BOM](https://github.com/diyruz/Zintercom/tree/master/hardware) by [xyzroe](https://t.me/xyzroe)
* [Firmware](https://github.com/diyruz/Zintercom/releases) by [xyzroe](https://t.me/xyzroe) * [Firmware](https://github.com/diyruz/Zintercom/releases) by [xyzroe](https://t.me/xyzroe)
* [Case stl](https://www.thingiverse.com/thing:4866356) by [dreamertwo](https://t.me/dreamertwo)
![](https://cdn.thingiverse.com/assets/0b/2f/09/d3/37/large_display_2021-05-22_22-55-43.JPG)
### Inspired by ### Inspired by
The original scheme of the intercom opener by [Alexander Vaidurov](https://easyeda.com/Alex_AW/domofon-with-battery) The original scheme of the intercom opener by [Alexander Vaidurov](https://easyeda.com/Alex_AW/domofon-with-battery)

View File

@@ -68,6 +68,7 @@ byte zclApp_TaskID;
* LOCAL VARIABLES * LOCAL VARIABLES
*/ */
static uint8 currentBtnClickPhase = 0;
/********************************************************************* /*********************************************************************
* LOCAL FUNCTIONS * LOCAL FUNCTIONS
@@ -137,15 +138,17 @@ static void zclApp_HandleKeys(byte portAndAction, byte keyCode) {
if (portAndAction & 0x01) { //P0 Ring //S1 P0_1 if (portAndAction & 0x01) { //P0 Ring //S1 P0_1
if (portAndAction & HAL_KEY_PRESS) {
//exit old stop timer //exit old stop timer
osal_stop_timerEx(zclApp_TaskID, APP_RING_STOP_EVT); osal_stop_timerEx(zclApp_TaskID, APP_RING_STOP_EVT);
//osal_clear_event(zclApp_TaskID, APP_RING_STOP_EVT); //osal_clear_event(zclApp_TaskID, APP_RING_STOP_EVT);
//start new stop timer (ring ends timer) //start new stop timer (ring ends timer)
osal_start_timerEx(zclApp_TaskID, APP_RING_STOP_EVT, 3000); //osal_start_timerEx(zclApp_TaskID, APP_RING_STOP_EVT, 3000);
//zclApp_Config.TimeRing
uint32 TimeBell = (uint32)zclApp_Config.TimeBell *(uint32)1000;
osal_start_timerEx(zclApp_TaskID, APP_RING_STOP_EVT, (uint32)TimeBell);
if (portAndAction & HAL_KEY_PRESS) {
//start ring //start ring
if (zclApp_State.RingRunStep == 0) { if (zclApp_State.RingRunStep == 0) {
@@ -155,7 +158,8 @@ static void zclApp_HandleKeys(byte portAndAction, byte keyCode) {
LREPMaster("Ring start\r\n"); LREPMaster("Ring start\r\n");
//HalLedSet(LED_PIN, HAL_LED_MODE_BLINK); //HalLedSet(LED_PIN, HAL_LED_MODE_BLINK);
zclApp_State.RingRunStep = 1; zclApp_State.RingRunStep = 1;
osal_start_reload_timer(zclApp_TaskID, APP_RING_RUN_EVT, 500); //osal_start_reload_timer(zclApp_TaskID, APP_RING_RUN_EVT, 500);
osal_start_timerEx(zclApp_TaskID, APP_RING_RUN_EVT, 500);
afAddrType_t inderect_DstAddr = {.addrMode = (afAddrMode_t)AddrNotPresent, .endPoint = 0, .addr.shortAddr = 0}; afAddrType_t inderect_DstAddr = {.addrMode = (afAddrMode_t)AddrNotPresent, .endPoint = 0, .addr.shortAddr = 0};
zclGeneral_SendOnOff_CmdOn(zclApp_FirstEP.EndPoint, &inderect_DstAddr, FALSE, bdb_getZCLFrameCounter()); zclGeneral_SendOnOff_CmdOn(zclApp_FirstEP.EndPoint, &inderect_DstAddr, FALSE, bdb_getZCLFrameCounter());
} }
@@ -176,10 +180,10 @@ static void zclApp_HandleKeys(byte portAndAction, byte keyCode) {
LREP("holdTime = %d \r\n", holdTime); LREP("holdTime = %d \r\n", holdTime);
zclApp_State.pressTime = 0; zclApp_State.pressTime = 0;
if (holdTime >= 1) { //seconds if (holdTime >= 1) { //seconds
osal_start_reload_timer(zclApp_TaskID, APP_BTN_HOLD_EVT, 50); osal_start_timerEx(zclApp_TaskID, APP_BTN_HOLD_EVT, 50);
} }
else { else {
osal_start_reload_timer(zclApp_TaskID, APP_BTN_CLICK_EVT, 50); osal_start_timerEx(zclApp_TaskID, APP_BTN_CLICK_EVT, 50);
} }
} }
} }
@@ -254,7 +258,9 @@ uint16 zclApp_event_loop(uint8 task_id, uint16 events) {
if (events & APP_BTN_HOLD_EVT) { if (events & APP_BTN_HOLD_EVT) {
LREPMaster("APP_BTN_HOLD_EVT\r\n"); LREPMaster("APP_BTN_HOLD_EVT\r\n");
#if !defined( ZIC_BATTERY_MODE )
zclApp_BtnClick(true); zclApp_BtnClick(true);
#endif
return (events ^ APP_BTN_HOLD_EVT); return (events ^ APP_BTN_HOLD_EVT);
} }
return 0; return 0;
@@ -266,6 +272,7 @@ static void zclApp_RingRun(void) {
LREP("zclApp_State.RingRunStep %d\r\n", zclApp_State.RingRunStep); LREP("zclApp_State.RingRunStep %d\r\n", zclApp_State.RingRunStep);
LREP("zclApp_State.State %d\r\n", zclApp_State.State); LREP("zclApp_State.State %d\r\n", zclApp_State.State);
osal_start_timerEx(zclApp_TaskID, APP_RING_RUN_EVT, 500);
switch (zclApp_State.State) { switch (zclApp_State.State) {
@@ -304,6 +311,7 @@ static void zclApp_RingRun(void) {
} }
break; break;
case Droped: case Droped:
osal_stop_timerEx(zclApp_TaskID, APP_RING_STOP_EVT);
if (zclApp_State.RingRunStep > 1) { if (zclApp_State.RingRunStep > 1) {
zclApp_RingEnd(); zclApp_RingEnd();
} }
@@ -314,7 +322,7 @@ static void zclApp_RingRun(void) {
static void zclApp_TalkStart(void) { static void zclApp_TalkStart(void) {
LREPMaster("Talk start\r\n"); LREPMaster("Talk start\r\n");
osal_stop_timerEx(zclApp_TaskID, APP_RING_STOP_EVT); //osal_stop_timerEx(zclApp_TaskID, APP_RING_STOP_EVT);
//osal_clear_event(zclApp_TaskID, APP_RING_STOP_EVT); //osal_clear_event(zclApp_TaskID, APP_RING_STOP_EVT);
zclApp_OneReport(); zclApp_OneReport();
HalLedSet(ANSWER_PIN, HAL_LED_MODE_ON); HalLedSet(ANSWER_PIN, HAL_LED_MODE_ON);
@@ -332,8 +340,8 @@ static void zclApp_RingEnd(void) {
HalLedSet(HANDSET_PIN, !zclApp_Config.ModeSound); HalLedSet(HANDSET_PIN, !zclApp_Config.ModeSound);
HalLedSet(ANSWER_PIN, HAL_LED_MODE_OFF); HalLedSet(ANSWER_PIN, HAL_LED_MODE_OFF);
osal_stop_timerEx(zclApp_TaskID, APP_RING_RUN_EVT); osal_stop_timerEx(zclApp_TaskID, APP_RING_RUN_EVT);
osal_clear_event(zclApp_TaskID, APP_RING_RUN_EVT); //osal_clear_event(zclApp_TaskID, APP_RING_RUN_EVT);
osal_stop_timerEx(zclApp_TaskID, APP_RING_STOP_EVT); //osal_stop_timerEx(zclApp_TaskID, APP_RING_STOP_EVT);
//osal_clear_event(zclApp_TaskID, APP_RING_STOP_EVT); //osal_clear_event(zclApp_TaskID, APP_RING_STOP_EVT);
zclApp_State.RingRunStep = 0; zclApp_State.RingRunStep = 0;
zclApp_State.State = Idle; zclApp_State.State = Idle;
@@ -353,17 +361,13 @@ static void zclApp_RingEnd(void) {
} }
static void zclApp_BtnClick(bool hold) { static void zclApp_BtnClick(bool hold) {
static uint8 currentBtnClickPhase = 0;
LREP("currentBtnClickPhase %d\r\n", currentBtnClickPhase); LREP("currentBtnClickPhase %d\r\n", currentBtnClickPhase);
switch (currentBtnClickPhase++) { switch (currentBtnClickPhase++) {
case 0: case 0:
if (hold) { if (hold) {
#if !defined( ZIC_BATTERY_MODE )
zclApp_Config.ModeSound = !zclApp_Config.ModeSound; zclApp_Config.ModeSound = !zclApp_Config.ModeSound;
HalLedSet(HANDSET_PIN, !zclApp_Config.ModeSound); HalLedSet(HANDSET_PIN, !zclApp_Config.ModeSound);
HalLedSet(CATCH_PIN, !zclApp_Config.ModeSound); HalLedSet(CATCH_PIN, !zclApp_Config.ModeSound);
#endif
} }
else { else {
if (zclApp_Config.ModeOpen < Drop) { if (zclApp_Config.ModeOpen < Drop) {
@@ -385,7 +389,8 @@ static void zclApp_BtnClick(bool hold) {
HalLedBlink(LED_PIN, zclApp_Config.ModeOpen+1, 50, 250); HalLedBlink(LED_PIN, zclApp_Config.ModeOpen+1, 50, 250);
} }
break; break;
case 3: default:
/*
if (hold) { if (hold) {
osal_stop_timerEx(zclApp_TaskID, APP_BTN_HOLD_EVT); osal_stop_timerEx(zclApp_TaskID, APP_BTN_HOLD_EVT);
osal_clear_event(zclApp_TaskID, APP_BTN_HOLD_EVT); osal_clear_event(zclApp_TaskID, APP_BTN_HOLD_EVT);
@@ -394,9 +399,18 @@ static void zclApp_BtnClick(bool hold) {
osal_stop_timerEx(zclApp_TaskID, APP_BTN_CLICK_EVT); osal_stop_timerEx(zclApp_TaskID, APP_BTN_CLICK_EVT);
osal_clear_event(zclApp_TaskID, APP_BTN_CLICK_EVT); osal_clear_event(zclApp_TaskID, APP_BTN_CLICK_EVT);
} }
*/
currentBtnClickPhase = 0; currentBtnClickPhase = 0;
break; break;
} }
if (currentBtnClickPhase != 0) {
if (hold) {
osal_start_timerEx(zclApp_TaskID, APP_BTN_HOLD_EVT, 50);
}
else {
osal_start_timerEx(zclApp_TaskID, APP_BTN_CLICK_EVT, 50);
}
}
} }
static void zclApp_Report(void) { static void zclApp_Report(void) {

View File

@@ -53,6 +53,7 @@ extern "C" {
#define ATTRID_TIMERING 0x0053 #define ATTRID_TIMERING 0x0053
#define ATTRID_TIMETALK 0x0054 #define ATTRID_TIMETALK 0x0054
#define ATTRID_TIMEOPEN 0x0055 #define ATTRID_TIMEOPEN 0x0055
#define ATTRID_TIMEBELL 0x0057
#define ATTRID_TIMEREPORT 0x0056 #define ATTRID_TIMEREPORT 0x0056
#define LED_PIN HAL_LED_1 #define LED_PIN HAL_LED_1
@@ -107,6 +108,7 @@ typedef struct {
uint8 TimeRing; uint8 TimeRing;
uint8 TimeTalk; uint8 TimeTalk;
uint8 TimeOpen; uint8 TimeOpen;
uint8 TimeBell;
uint8 TimeReport; uint8 TimeReport;
} application_config_t; } application_config_t;

View File

@@ -67,7 +67,7 @@ const uint8 zclApp_PowerSource = POWER_SOURCE_DC;
#define DEFAULT_TimeRing 7 //seconds to ring, before answer #define DEFAULT_TimeRing 7 //seconds to ring, before answer
#define DEFAULT_TimeTalk 3 //seconds to talk, before open #define DEFAULT_TimeTalk 3 //seconds to talk, before open
#define DEFAULT_TimeOpen 2 //seconds to hold open #define DEFAULT_TimeOpen 2 //seconds to hold open
#define DEFAULT_TimeBell 3 //seconds after last bell to finish ring
application_config_t zclApp_Config = { application_config_t zclApp_Config = {
.ModeOpen = DEFAULT_ModeOpen, .ModeOpen = DEFAULT_ModeOpen,
@@ -75,6 +75,7 @@ application_config_t zclApp_Config = {
.TimeRing = DEFAULT_TimeRing, .TimeRing = DEFAULT_TimeRing,
.TimeTalk = DEFAULT_TimeTalk, .TimeTalk = DEFAULT_TimeTalk,
.TimeOpen = DEFAULT_TimeOpen, .TimeOpen = DEFAULT_TimeOpen,
.TimeBell = DEFAULT_TimeBell,
.TimeReport = DEFAULT_TimeReport, .TimeReport = DEFAULT_TimeReport,
}; };
@@ -122,6 +123,7 @@ CONST zclAttrRec_t zclApp_AttrsFirstEP[] = {
{ZCL_INTERCOM, {ATTRID_TIMERING, ZCL_UINT8, RW, (void *)&zclApp_Config.TimeRing}}, {ZCL_INTERCOM, {ATTRID_TIMERING, ZCL_UINT8, RW, (void *)&zclApp_Config.TimeRing}},
{ZCL_INTERCOM, {ATTRID_TIMETALK, ZCL_UINT8, RW, (void *)&zclApp_Config.TimeTalk}}, {ZCL_INTERCOM, {ATTRID_TIMETALK, ZCL_UINT8, RW, (void *)&zclApp_Config.TimeTalk}},
{ZCL_INTERCOM, {ATTRID_TIMEOPEN, ZCL_UINT8, RW, (void *)&zclApp_Config.TimeOpen}}, {ZCL_INTERCOM, {ATTRID_TIMEOPEN, ZCL_UINT8, RW, (void *)&zclApp_Config.TimeOpen}},
{ZCL_INTERCOM, {ATTRID_TIMEBELL, ZCL_UINT8, RW, (void *)&zclApp_Config.TimeBell}},
{ZCL_INTERCOM, {ATTRID_TIMEREPORT, ZCL_UINT8, RW, (void *)&zclApp_Config.TimeReport}}, {ZCL_INTERCOM, {ATTRID_TIMEREPORT, ZCL_UINT8, RW, (void *)&zclApp_Config.TimeReport}},
}; };
@@ -157,5 +159,6 @@ void zclApp_ResetAttributesToDefaultValues(void) {
zclApp_Config.TimeRing = DEFAULT_TimeRing; zclApp_Config.TimeRing = DEFAULT_TimeRing;
zclApp_Config.TimeTalk = DEFAULT_TimeTalk; zclApp_Config.TimeTalk = DEFAULT_TimeTalk;
zclApp_Config.TimeOpen = DEFAULT_TimeOpen; zclApp_Config.TimeOpen = DEFAULT_TimeOpen;
zclApp_Config.TimeBell = DEFAULT_TimeBell;
zclApp_Config.TimeReport = DEFAULT_TimeReport; zclApp_Config.TimeReport = DEFAULT_TimeReport;
} }

View File

@@ -82,6 +82,9 @@ const fz = {
if (msg.data.hasOwnProperty(0x0055)) { if (msg.data.hasOwnProperty(0x0055)) {
result.time_open = msg.data[0x0055]; result.time_open = msg.data[0x0055];
} }
if (msg.data.hasOwnProperty(0x0057)) {
result.time_bell = msg.data[0x0057];
}
if (msg.data.hasOwnProperty(0x0056)) { if (msg.data.hasOwnProperty(0x0056)) {
result.time_report = msg.data[0x0056]; result.time_report = msg.data[0x0056];
} }
@@ -92,7 +95,7 @@ const fz = {
const tz = { const tz = {
diy_zintercom_config: { diy_zintercom_config: {
key: ['state', 'mode', 'sound', 'time_ring', 'time_talk', 'time_open', 'time_report'], key: ['state', 'mode', 'sound', 'time_ring', 'time_talk', 'time_open', 'time_bell', 'time_report'],
convertSet: async (entity, key, rawValue, meta) => { convertSet: async (entity, key, rawValue, meta) => {
const lookup = { const lookup = {
'OFF': 0x00, 'OFF': 0x00,
@@ -118,6 +121,7 @@ const tz = {
time_ring: {0x0053: {value, type: 0x20}}, time_ring: {0x0053: {value, type: 0x20}},
time_talk: {0x0054: {value, type: 0x20}}, time_talk: {0x0054: {value, type: 0x20}},
time_open: {0x0055: {value, type: 0x20}}, time_open: {0x0055: {value, type: 0x20}},
time_bell: {0x0057: {value, type: 0x20}},
time_report: {0x0056: {value, type: 0x20}}, time_report: {0x0056: {value, type: 0x20}},
}; };
@@ -134,6 +138,7 @@ const tz = {
time_ring: ['closuresDoorLock', 0x0053], time_ring: ['closuresDoorLock', 0x0053],
time_talk: ['closuresDoorLock', 0x0054], time_talk: ['closuresDoorLock', 0x0054],
time_open: ['closuresDoorLock', 0x0055], time_open: ['closuresDoorLock', 0x0055],
time_bell: ['closuresDoorLock', 0x0057],
time_report: ['closuresDoorLock', 0x0056], time_report: ['closuresDoorLock', 0x0056],
}; };
await entity.read(payloads[key][0], [payloads[key][1]]); await entity.read(payloads[key][0], [payloads[key][1]]);
@@ -193,10 +198,11 @@ const device = {
.withDescription('Time to hold before open'), .withDescription('Time to hold before open'),
exposes.numeric('time_open', ea.ALL).withUnit('sec') exposes.numeric('time_open', ea.ALL).withUnit('sec')
.withDescription('Time to open before end'), .withDescription('Time to open before end'),
exposes.numeric('time_bell', ea.ALL).withUnit('sec')
.withDescription('Time after last bell to finish ring'),
exposes.numeric('time_report', ea.ALL).withUnit('min') exposes.numeric('time_report', ea.ALL).withUnit('min')
.withDescription('Reporting interval'), .withDescription('Reporting interval'),
ep.battery(), ep.battery(),
ep.linkquality(),
], ],
}; };