diff --git a/POCloud_Driver/HTML/Nodelist.html b/POCloud_Driver/HTML/Nodelist.html
index 04d7795..7141c32 100644
--- a/POCloud_Driver/HTML/Nodelist.html
+++ b/POCloud_Driver/HTML/Nodelist.html
@@ -37,12 +37,12 @@
Motor Current
-
<%=channels["ipp.e300averagecurrent"].value %> A
+
<%= Math.round(channels["ipp.e300averagecurrent"].value * 100) / 100 %> A
<% if (channels["ipp.downholetoolenabled"].value == 1) { %>
Fluid Level
-
<%=channels["ipp.dhfluidlevel"].value %> ft
+
<%= Math.round(channels["ipp.dhfluidlevel"].value * 10) / 10 %> ft
<% } %>
diff --git a/README.md b/README.md
index 7bb21fd..341d5fc 100644
--- a/README.md
+++ b/README.md
@@ -3,16 +3,16 @@
# Device_Status_INT Mapping
-| Integer | String |
+| Integer | String |
|---------------|---------------------------------------|
-| 1 | Startup |
-| 2 | Not ready to start |
-| 3 | Ready to start |
-| 4 | Lost run permissive |
-| 5 | Not able to restart - Overload Limit |
-| 6 | Not able to restart - Trip Limit |
-| 7 | Waiting to attempt restart |
-| 8 | Waiting to attempt restart (Overload) |
-| 9 | Running |
-| 10 | User stopped |
-| 11 | Waiting to start (Timer Mode) |
+| 1 | Startup |
+| 2 | Not ready to start |
+| 3 | Ready to start |
+| 4 | Lost run permissive |
+| 5 | Not able to restart - Overload Limit |
+| 6 | Not able to restart - Trip Limit |
+| 7 | Waiting to attempt restart |
+| 8 | Waiting to attempt restart (Overload) |
+| 9 | Running |
+| 10 | User stopped |
+| 11 | Waiting to start (Timer Mode) |