forked from iizotov/iot-workshop
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfunction.cs
60 lines (49 loc) · 1.52 KB
/
function.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
#r "Microsoft.ServiceBus"
#r "Newtonsoft.Json"
using System;
using System.Collections;
using System.Dynamic;
using System.Text;
using Microsoft.ServiceBus.Messaging;
public static string[] Run(EventData[] myEventHubMessage, TraceWriter log)
{
ArrayList msgObjects = new ArrayList();
foreach (EventData eventData in myEventHubMessage)
{
var deviceId = GetDeviceId(eventData);
double[] values = tempDecode(eventData.GetBytes());
log.Info($"deviceId: { deviceId }, Object Temperature: {values[0]}, Ambient Temperature: {values[1]}");
dynamic msgObject = new ExpandoObject();
msgObject.deviceId = deviceId;
msgObject.objTemperature = values[0];
msgObject.ambTemperature = values[1];
string msgString = Newtonsoft.Json.JsonConvert.SerializeObject(msgObject).ToString();
log.Info(msgString);
msgObjects.Add(msgString);
}
return (string[])msgObjects.ToArray(typeof(string));
}
private static string GetDeviceId(EventData message)
{
return message.SystemProperties["iothub-connection-device-id"].ToString();
}
public static double[] tempDecode(byte[] bArray)
{
double[] output = {.0, .0};
const double SCALE_LSB = 0.03125;
double t;
int it;
if(bArray.Length != 4)
{
return output;
}
UInt16 rawAmbTemp = (UInt16)(((UInt16)bArray[3] << 8) + (UInt16)bArray[2]);
UInt16 rawObjTemp = (UInt16)(((UInt16)bArray[1] << 8) + (UInt16)bArray[0]);
it = (int)((rawObjTemp) >> 2);
t = ((double)(it)) * SCALE_LSB;
output[0] = t;
it = (int)((rawAmbTemp) >> 2);
t = (double)it;
output[1] = t * SCALE_LSB;
return output;
}