Difference between revisions of "Omegix/Home Automation/Arrival Sensor"

From Makers Local 256
Jump to: navigation, search
(making arrival sensor notes)
 
(Approaches: updating formatting)
Line 12: Line 12:
 
*** Pseudo Code
 
*** Pseudo Code
 
***# When inside of geofence, record time stamp, send message on cellular network, set IsReportMade flag true
 
***# When inside of geofence, record time stamp, send message on cellular network, set IsReportMade flag true
****# If IsReportMade flag is true, do not send message
+
***# If IsReportMade flag is true, do not send message
****# When powered off, IsReportMade flag should be reset.
+
***# When powered off, IsReportMade flag should be reset.
****# If time outside geofence is greater than time inside geofence, set IsReportMade flag to false.
+
***# If time outside geofence is greater than time inside geofence, set IsReportMade flag to false.
 
+
  
 
= Online Resources =
 
= Online Resources =

Revision as of 13:18, 7 April 2016

Approaches

  • Using Smart Phone As a position reporter
  • Use Mesh IoT network to detect addition of specific node (No GPS Solution)
  • Use GPS device that reports position via a 3G cellular network
    • Only On when car is on via ODBII or lighter jack
      • Components
        • Voltage Regulator
        • GPS
        • Cellular Interface
        • Memory (to store Geofence Locations)
        • Processor (to calculate distance from Geofence)
      • Pseudo Code
        1. When inside of geofence, record time stamp, send message on cellular network, set IsReportMade flag true
        2. If IsReportMade flag is true, do not send message
        3. When powered off, IsReportMade flag should be reset.
        4. If time outside geofence is greater than time inside geofence, set IsReportMade flag to false.

Online Resources