flowchart LR
P1[PIR1]
P2[PIR2]
C1[Controller1]
C2[Controller2]
L1[Light1]
L2[Light2]
G[Gateway]
Cl[Cloud - UI]
U[User]
P1-->C1
C1<-->L1
C1---G
G---Cl
Cl---U
P2-->C2
C2<-->L2
C2---G
The system we’re going to implement is shown above. Initially, we will simulate the entire system on the PC itself, for which we need a module that will simulate the soft application timer available on the embedded systems. I wrote the version 0.1 of this module, which can be found at https://github.com/adeesh-87/ATimer. Eventually, we will port the code to respective hardware modules.
The way this timer works, is that it uses a queue of timers. There is a “tick” thread which polls to check whether the current time has passed beyond the upcoming timeout. If yes, it signals the “worker” thread, which processes all the timers that have timed out. It calls their callback function, then either deletes them, or reschedules them if they are repeating.
We need this application timer because our controller logic is broadly going to be represented by the following flowchart:
flowchart TD
S([Start])
i1[Initialize Controller peripherals]
i2[Poll for: PIR interrupt flag or timers]
P>PIR interrupt]
D[Disable PIR and T2 if running]
A[PIR event actions]
B[Start T1: PIR blank timeout]
t1>PIR Blank Timeout T1]
t2>Light out Timeout T2]
O[Turn off light]
E[Enable PIR]
C[Start T2: Light out timeout]
S-->i1
i1-->i2
i2-->i2
P-->D
D-->A
A-->B
t1-->E
E-->C
t2-->O