Browse Source

max44000: Added new sensor module

Signed-off-by: Kiveisha Yevgeniy <yevgeniy.kiveisha@intel.com>
Kiveisha Yevgeniy 10 years ago
parent
commit
38efe2d7a3

+ 3
- 0
examples/CMakeLists.txt View File

@@ -12,6 +12,7 @@ add_executable (es08a es08a.cxx)
12 12
 add_executable (son-hcsr04 hcsr04.cxx)
13 13
 add_executable (oled-1308 oled-1308.cxx)
14 14
 add_executable (oled-1327 oled-1327.cxx)
15
+add_executable (proximity max44000.cxx)
15 16
 
16 17
 include_directories (${PROJECT_SOURCE_DIR}/src/hmc5883l)
17 18
 include_directories (${PROJECT_SOURCE_DIR}/src/grove)
@@ -22,6 +23,7 @@ include_directories (${PROJECT_SOURCE_DIR}/src/4digitdisplay)
22 23
 include_directories (${PROJECT_SOURCE_DIR}/src/nrf24l01)
23 24
 include_directories (${PROJECT_SOURCE_DIR}/src/servo)
24 25
 include_directories (${PROJECT_SOURCE_DIR}/src/hcsr04)
26
+include_directories (${PROJECT_SOURCE_DIR}/src/max44000)
25 27
 
26 28
 target_link_libraries (compass hmc5883l ${CMAKE_THREAD_LIBS_INIT})
27 29
 target_link_libraries (groveled grove ${CMAKE_THREAD_LIBS_INIT})
@@ -37,3 +39,4 @@ target_link_libraries (es08a servo ${CMAKE_THREAD_LIBS_INIT})
37 39
 target_link_libraries (son-hcsr04 hcsr04 ${CMAKE_THREAD_LIBS_INIT})
38 40
 target_link_libraries (oled-1308 i2clcd ${CMAKE_THREAD_LIBS_INIT})
39 41
 target_link_libraries (oled-1327 i2clcd ${CMAKE_THREAD_LIBS_INIT})
42
+target_link_libraries (proximity max44000 ${CMAKE_THREAD_LIBS_INIT})

+ 42
- 0
examples/max44000.cxx View File

@@ -0,0 +1,42 @@
1
+/*
2
+ * Author: Yevgeniy Kiveisha <yevgeniy.kiveisha@intel.com>
3
+ * Copyright (c) 2014 Intel Corporation.
4
+ *
5
+ * Permission is hereby granted, free of charge, to any person obtaining
6
+ * a copy of this software and associated documentation files (the
7
+ * "Software"), to deal in the Software without restriction, including
8
+ * without limitation the rights to use, copy, modify, merge, publish,
9
+ * distribute, sublicense, and/or sell copies of the Software, and to
10
+ * permit persons to whom the Software is furnished to do so, subject to
11
+ * the following conditions:
12
+ *
13
+ * The above copyright notice and this permission notice shall be
14
+ * included in all copies or substantial portions of the Software.
15
+ *
16
+ * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
17
+ * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
18
+ * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
19
+ * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
20
+ * LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
21
+ * OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
22
+ * WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
23
+ */
24
+
25
+#include <unistd.h>
26
+#include <iostream>
27
+#include "max44000.h"
28
+
29
+int
30
+main(int argc, char **argv)
31
+{
32
+    //! [Interesting]
33
+    upm::MAX44000 *sensor = new upm::MAX44000(0, ADDR);
34
+    std::cout << "proximity value = " << sensor->getAmbient () << std::endl;
35
+    //! [Interesting]
36
+
37
+    std::cout << "exiting application" << std::endl;
38
+
39
+    delete sensor;
40
+
41
+    return 0;
42
+}

+ 11
- 0
src/max44000/CMakeLists.txt View File

@@ -0,0 +1,11 @@
1
+set (libname "max44000")
2
+add_library (max44000 SHARED max44000.cxx)
3
+include_directories (${MAA_INCLUDE_DIR})
4
+target_link_libraries (max44000 ${MAA_LIBRARIES})
5
+
6
+install (TARGETS ${libname} DESTINATION lib/upm COMPONENT ${libname})
7
+install (FILES max44000.h DESTINATION include/upm COMPONENT ${libname})
8
+
9
+cpack_add_component (${libname} DISPLAY_NAME ${libname} REQUIRED INSTALL_TYPES all)
10
+set(CPACK_COMPONENT_${libname}_DESCRIPTION "libupm MAX44000")
11
+

+ 7
- 0
src/max44000/jsupm_max44000.i View File

@@ -0,0 +1,7 @@
1
+%module jsupm_max44000
2
+
3
+%{
4
+    #include "max44000.h"
5
+%}
6
+
7
+%include "max44000.h"

+ 114
- 0
src/max44000/max44000.cxx View File

@@ -0,0 +1,114 @@
1
+/*
2
+ * Author: Yevgeniy Kiveisha <yevgeniy.kiveisha@intel.com>
3
+ * Copyright (c) 2014 Intel Corporation.
4
+ *
5
+ * Permission is hereby granted, free of charge, to any person obtaining
6
+ * a copy of this software and associated documentation files (the
7
+ * "Software"), to deal in the Software without restriction, including
8
+ * without limitation the rights to use, copy, modify, merge, publish,
9
+ * distribute, sublicense, and/or sell copies of the Software, and to
10
+ * permit persons to whom the Software is furnished to do so, subject to
11
+ * the following conditions:
12
+ *
13
+ * The above copyright notice and this permission notice shall be
14
+ * included in all copies or substantial portions of the Software.
15
+ *
16
+ * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
17
+ * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
18
+ * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
19
+ * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
20
+ * LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
21
+ * OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
22
+ * WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
23
+ */
24
+
25
+#include <iostream>
26
+#include <unistd.h>
27
+#include <stdlib.h>
28
+
29
+#include "max44000.h"
30
+
31
+using namespace upm;
32
+
33
+MAX44000::MAX44000 (int bus, int devAddr) {
34
+    m_name = "MAX44000";
35
+
36
+    m_maxControlAddr = devAddr;
37
+    m_bus = bus;
38
+
39
+    m_i2cMaxControlCtx = maa_i2c_init(m_bus);
40
+
41
+    maa_result_t ret = maa_i2c_address(m_i2cMaxControlCtx, m_maxControlAddr);
42
+    if (ret != MAA_SUCCESS) {
43
+        fprintf(stderr, "Messed up i2c bus\n");
44
+    }
45
+
46
+    i2cWriteReg (MCR, 0x2C);
47
+    i2cWriteReg (TCR, 0x6);
48
+}
49
+
50
+MAX44000::~MAX44000() {
51
+    maa_i2c_stop(m_i2cMaxControlCtx);
52
+}
53
+
54
+uint16_t
55
+MAX44000::getProximity () {
56
+    uint16_t data = 0;
57
+
58
+    data = (i2cReadReg_8 (ALSDATA_HIGH) & 0x7F) << 8;
59
+    data = data | i2cReadReg_8 (ALSDATA_LOW);
60
+
61
+    return data;
62
+}
63
+
64
+uint16_t
65
+MAX44000::getAmbient () {
66
+    uint16_t data = 0;
67
+
68
+    data = (i2cReadReg_8 (ALSDATA_HIGH) & 0x7F) << 8;
69
+    data = data | i2cReadReg_8 (ALSDATA_LOW);
70
+
71
+    return data;
72
+}
73
+
74
+/*
75
+ * **************
76
+ *  private area
77
+ * **************
78
+ */
79
+uint8_t
80
+MAX44000::i2cReadReg_8 (int reg) {
81
+    uint8_t data;
82
+
83
+    maa_i2c_address(m_i2cMaxControlCtx, m_maxControlAddr);
84
+    maa_i2c_write_byte(m_i2cMaxControlCtx, reg);
85
+
86
+    maa_i2c_address(m_i2cMaxControlCtx, m_maxControlAddr);
87
+    maa_i2c_read(m_i2cMaxControlCtx, &data, 0x1);
88
+
89
+    return data;
90
+}
91
+
92
+uint16_t
93
+MAX44000::i2cReadReg_16 (int reg) {
94
+    uint16_t data;
95
+
96
+    maa_i2c_address(m_i2cMaxControlCtx, m_maxControlAddr);
97
+    maa_i2c_write_byte(m_i2cMaxControlCtx, reg);
98
+
99
+    maa_i2c_address(m_i2cMaxControlCtx, m_maxControlAddr);
100
+    maa_i2c_read(m_i2cMaxControlCtx, (uint8_t *)&data, 0x2);
101
+
102
+    return data;
103
+}
104
+
105
+maa_result_t
106
+MAX44000::i2cWriteReg (uint8_t reg, uint8_t value) {
107
+    maa_result_t error = MAA_SUCCESS;
108
+
109
+    uint8_t data[2] = { reg, value };
110
+    error = maa_i2c_address (m_i2cMaxControlCtx, m_maxControlAddr);
111
+    error = maa_i2c_write (m_i2cMaxControlCtx, data, 2);
112
+
113
+    return error;
114
+}

+ 108
- 0
src/max44000/max44000.h View File

@@ -0,0 +1,108 @@
1
+/*
2
+ * Author: Yevgeniy Kiveisha <yevgeniy.kiveisha@intel.com>
3
+ * Copyright (c) 2014 Intel Corporation.
4
+ *
5
+ * Permission is hereby granted, free of charge, to any person obtaining
6
+ * a copy of this software and associated documentation files (the
7
+ * "Software"), to deal in the Software without restriction, including
8
+ * without limitation the rights to use, copy, modify, merge, publish,
9
+ * distribute, sublicense, and/or sell copies of the Software, and to
10
+ * permit persons to whom the Software is furnished to do so, subject to
11
+ * the following conditions:
12
+ *
13
+ * The above copyright notice and this permission notice shall be
14
+ * included in all copies or substantial portions of the Software.
15
+ *
16
+ * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
17
+ * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
18
+ * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
19
+ * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
20
+ * LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
21
+ * OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
22
+ * WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
23
+ */
24
+#pragma once
25
+
26
+#include <string>
27
+#include <maa/i2c.h>
28
+
29
+#define ADDR               0x4A // device address
30
+
31
+// registers address
32
+#define ALSDATA_HIGH       0x04 // ambient sensor data high byte
33
+#define ALSDATA_LOW        0x05 // ambient sensor data low byte
34
+#define PRXDATA            0x15 // proximity sensor data
35
+#define MCR                0x01 // Main Configuration Register
36
+#define RCR                0x02 // Receive Configuration Register
37
+#define TCR                0x03 // Transmit Configuration Register
38
+
39
+#define HIGH               1
40
+#define LOW                0
41
+
42
+namespace upm {
43
+
44
+/**
45
+ * @brief C++ API for MAX44000 chip (Ambient and Infrared Proximity Sensor)
46
+ *
47
+ * This file defines the MAX44000 C++ interface for libmax44000
48
+ *
49
+ * @snippet proximity.cxx Interesting
50
+ *
51
+ * PMOD pins for MAX44000PMB1 board
52
+ *
53
+ * ( -= J1 =- )
54
+ * (1) - NUL
55
+ * (2) - IRQ
56
+ * (3) - SCL
57
+ * (4) - SDA
58
+ * (5) - GND
59
+ * (6) - VCC
60
+ *
61
+ */
62
+class MAX44000 {
63
+    public:
64
+        /**
65
+         * Instanciates a MAX44000 object
66
+         *
67
+         * @param bus number of used bus
68
+         * @param devAddr addres of used i2c device
69
+         */
70
+        MAX44000 (int bus, int devAddr);
71
+
72
+        /**
73
+         * MAX44000 object destructor, basicaly it close i2c connection.
74
+         */
75
+        ~MAX44000 ();
76
+
77
+        /**
78
+         * Read the proximity value from the chip (based on ambient data).
79
+         */
80
+        uint16_t getProximity ();
81
+        /**
82
+         * Read the ambient value from the chip (based on ambient data).
83
+         */
84
+        uint16_t getAmbient ();
85
+
86
+        /**
87
+         * Return name of the component
88
+         */
89
+        std::string name()
90
+        {
91
+            return m_name;
92
+        }
93
+    private:
94
+        uint16_t getALSData ();
95
+        uint16_t getPRXData ();
96
+
97
+        uint8_t i2cReadReg_8 (int reg);
98
+        uint16_t i2cReadReg_16 (int reg);
99
+        maa_result_t i2cWriteReg (uint8_t reg, uint8_t value);
100
+
101
+        std::string m_name;
102
+
103
+        int m_maxControlAddr;
104
+        int m_bus;
105
+        maa_i2c_context m_i2cMaxControlCtx;
106
+};
107
+
108
+}

+ 8
- 0
src/max44000/pyupm_max44000.i View File

@@ -0,0 +1,8 @@
1
+%module pyupm_max44000
2
+
3
+%feature("autodoc", "3");
4
+
5
+%include "max44000.h"
6
+%{
7
+    #include "max44000.h"
8
+%}