ok

Dependencies:   mbed AnalogIn_Diff_ok MovingAverage_ok

Revision:
0:e08a063f61c3
Child:
1:868ff3346841
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/main.cpp	Wed Dec 10 12:53:53 2014 +0000
@@ -0,0 +1,41 @@
+/* 
+ * Copyright (c) 2014 LAAS-CNRS
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ *     http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+#include "mbed.h"
+#include "trms.h"
+
+#define VERSION "trms_helloworld_2014_12_08"
+#define CIBLE "K64F"
+
+
+
+int main()
+{
+
+trms line1_AC(ADC_DIFF(0,1));
+    line1_AC.test(10);
+        
+    printf("%s %s\r\n",VERSION,CIBLE);
+
+    line1_AC.set_gain(2.0*ADCVREF/65535.0);
+    line1_AC.set_offset(0.0);
+    line1_AC.start();
+    while (true) {
+        
+        wait(1.0);
+        printf("Vavg= %f Vrms= %f \r\n",line1_AC.read_average(),line1_AC.read_rms());
+        //line1_AC.test(20);
+    }
+}