blob: 11c9f4eca2fa40709a4880eaa861cb66be971885 [file] [log] [blame]
Tom Josephb61b1072019-01-28 12:32:52 +05301## This file is a template. The comment below is emitted
2## into the rendered file; feel free to edit this file.
3
4// !!! WARNING: This is a GENERATED Code..Please do NOT Edit !!!
5
6#include "oemhandler.hpp"
7
8extern const ObjectIDMap invSensors = {
Patrick Williams9975ae92020-04-03 15:31:18 -05009% for key in sensorDict.keys():
Tom Josephb61b1072019-01-28 12:32:52 +053010 % if key:
11{"${key}",
12 {
13<%
14 objectPath = sensorDict[key]
15 sensorID = objectPath["sensorID"]
16 sensorType = objectPath["sensorType"]
17 eventReadingType = objectPath["eventReadingType"]
18 offset = objectPath["offset"]
19%>
20 ${sensorID},${sensorType},${eventReadingType},${offset}
21 }
22},
23 % endif
24% endfor
25};
26