Register display for Azoteq IQS621 ultra low power I2C multi-function sensor.

Dependents:   IQS621_HelloWorld

A library that performs a register dump of the Azoteq IQS621 ultra low power multisensor registers.

More information on the IQS621 here:

Components / IQS621
Azoteq IQS621 ultra low power sensor for ambient light, magnetic field, capacitance and inductive proximity. Empowers next-generation user interfaces.


Low Cost Evaluation Board For Azoteq IQS621ultra low power I2C sensor for ambient light, magnetic field, capacitance, inductive proximity and temperature.


Serial Terminal Output

/media/uploads/AzqDev/iqs621-1-display-i2c-ultra-low-power-sensor-for-ambient-light-capacitive-touch-magnetic-field.gif
IQS621 Register display as performed by mbed LPC1768.
Note the frame number - over half a million register dumps were performed with zero I2C errors.

Revision:
0:6a124fa2a919
Child:
1:e29de2210e8a
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/IQS621DisplayTerminal.cpp	Sat May 06 00:39:45 2017 +0000
@@ -0,0 +1,66 @@
+// A class library to display Azoteq IQS621 registers on a terminal
+
+// Copyright 2017 Azoteq. Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
+
+// More info on IQS621 sensor IC: http://bit.ly/IQS621-info
+
+// IQS621 1-minute youtube video: N.A.
+
+#include "IQS621DisplayTerminal.h"
+
+// constructor
+#if defined(TARGET_TEENSY3_1) || defined (TARGET_TEENSY3_2) || IQS_USE_USBSERIAL
+IQS621Display::IQS621Display() : USBSerial() // use our own USB device stack
+#else
+IQS621Display::IQS621Display() : Serial(USBTX,USBRX) // use mbed default serial port
+#endif
+
+{    
+    frameCounter=0;
+    baud(DISPLAY_BAUD_RATE);
+}    
+
+#if defined(TARGET_TEENSY3_1) || defined (TARGET_TEENSY3_2) || IQS_USE_USBSERIAL
+void IQS621Display::baud(int baudRate){}
+#endif
+
+// display a startup message to serial port
+void IQS621Display::helloMessage(bool waitForUser) {
+    puts("\x1b[2J  \x1b[?25l  \x1b[H"); // ANSII/VT100 codes to clear screen, invisible cursor, home cursor
+    printf("           IQS621 Register Display\r\n\r\n"); 
+    printf("To get a smooth screen refresh effect, use a terminal program that supports ANSI/VT100 escape codes such as Tera Term.\r\n\r\n");
+    printf("Handy hint - In many terminal programs, Alt-B (break) will reset your mbed Board.\r\n\r\n");
+    printf("Press any key to continue...\r\n");
+    if ( waitForUser ) while( ! readable() ); // wait for keypress to continue
+    puts("\x1b[2J  \x1b[?25l  \x1b[H"); // ANSII/VT100 codes to clear screen, invisible cursor, home cursor
+}
+
+// show headings and I2C error count
+void IQS621Display::showStatus(int I2Cspeed, int I2CErrorCount) {
+    frameCounter++;
+    puts("\x1b[H"); // ANSI/VT100 command for cursor home
+    printf("\t"); 
+    printf("\t IQS621 Register Display\r\n\r\n"); // heading
+    printf("\t Frame number %06d", frameCounter);
+    printf("\t I2C Speed %dk", I2Cspeed/1000);
+    printf("\t I2C Errors %d", I2CErrorCount);
+}
+
+// formatted hex display of IQS621 registers
+void IQS621Display::showRegisters(char * buffer) {
+    #define ShowLine(FROM,TO) for(int j=(FROM);j<=(TO);j++)printf("%02x ",buffer[j])
+    printf("\r\n\r\n           Device ID (46) [00] "); ShowLine(0x00,0x02);
+    printf("\r\n\r\n         Events and Flags [10] "); ShowLine(0x10,0x1e);
+    printf("\r\n\r\n  Channels 0-5 Raw Values [20] "); ShowLine(0x20,0x2d);
+    printf("\r\n\r\n   Long Term Average Data [30] "); ShowLine(0x30,0x33);
+    printf("\r\n\r\n      Proxfusion Settings [40] "); ShowLine(0x40,0x4d);
+    printf("\r\n\r\n    Proxfusion Thresholds [50] "); ShowLine(0x50,0x54);
+    printf("\r\n\r\n   Metal Detect Threshold [60] "); ShowLine(0x60,0x63);
+    printf("\r\n\r\n   Ambient Light Settings [70] "); ShowLine(0x70,0x73);
+    printf("\r\n\r\n Ambient Light Thresholds [80] "); ShowLine(0x80,0x83);
+    printf("\r\n\r\n     Hall Sensor Settings [90] "); ShowLine(0x90,0x93);
+    printf("\r\n\r\n   Hall Switch Thresholds [A0] "); ShowLine(0xa0,0xa2);
+    printf("\r\n\r\n   Temperature Cal/Limits [C0] "); ShowLine(0xc0,0xc3);
+    printf("\r\n\r\n  Device & Power Settings [D0] "); ShowLine(0xd0,0xd7);
+    printf("\r\n\r\n");
+}
\ No newline at end of file