Added a GPIO to power on/off for external I2C sensor(s) (with LEDs)

Dependencies:   UniGraphic mbed vt100

18-Jun-2018 外部センサの電源オン・オフ機能は下位互換の為に無効になっていました。 この版で再度有効にしました。

Committer:
Rhyme
Date:
Mon Jun 18 01:56:00 2018 +0000
Revision:
1:8d65cfc3a2e2
Parent:
0:846e2321c637
External sensor power on/off function enabled. (Previously disabled)

Who changed what in which revision?

UserRevisionLine numberNew contents of line
Rhyme 0:846e2321c637 1 /**
Rhyme 0:846e2321c637 2 * Copyright 2015 Afero, Inc.
Rhyme 0:846e2321c637 3 *
Rhyme 0:846e2321c637 4 * Licensed under the Apache License, Version 2.0 (the "License");
Rhyme 0:846e2321c637 5 * you may not use this file except in compliance with the License.
Rhyme 0:846e2321c637 6 * You may obtain a copy of the License at
Rhyme 0:846e2321c637 7 *
Rhyme 0:846e2321c637 8 * http://www.apache.org/licenses/LICENSE-2.0
Rhyme 0:846e2321c637 9 *
Rhyme 0:846e2321c637 10 * Unless required by applicable law or agreed to in writing, software
Rhyme 0:846e2321c637 11 * distributed under the License is distributed on an "AS IS" BASIS,
Rhyme 0:846e2321c637 12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
Rhyme 0:846e2321c637 13 * See the License for the specific language governing permissions and
Rhyme 0:846e2321c637 14 * limitations under the License.
Rhyme 0:846e2321c637 15 */
Rhyme 0:846e2321c637 16
Rhyme 0:846e2321c637 17 /**
Rhyme 0:846e2321c637 18 * afLib public interface
Rhyme 0:846e2321c637 19 *
Rhyme 0:846e2321c637 20 * This file defines everything your application should need for commuinicating with the Afero ASR-1 radio module.
Rhyme 0:846e2321c637 21 * Is there is anything missing from this file, please post a request on the developer forum and we will see what
Rhyme 0:846e2321c637 22 * we can do.
Rhyme 0:846e2321c637 23 */
Rhyme 0:846e2321c637 24 #ifndef AFLIB_IAFLIB_H
Rhyme 0:846e2321c637 25 #define AFLIB_IAFLIB_H
Rhyme 0:846e2321c637 26
Rhyme 0:846e2321c637 27 #include "mbed.h"
Rhyme 0:846e2321c637 28 #include <string>
Rhyme 0:846e2321c637 29 using namespace std;
Rhyme 0:846e2321c637 30 #include "afErrors.h"
Rhyme 0:846e2321c637 31 #include "afSPI.h"
Rhyme 0:846e2321c637 32
Rhyme 0:846e2321c637 33 #if defined (TARGET_TEENSY3_1)
Rhyme 0:846e2321c637 34 #include "USBSerial.h"
Rhyme 0:846e2321c637 35 #endif
Rhyme 0:846e2321c637 36
Rhyme 0:846e2321c637 37 #define afMINIMUM_TIME_BETWEEN_REQUESTS 1000
Rhyme 0:846e2321c637 38
Rhyme 0:846e2321c637 39 #define MAX_ATTRIBUTE_SIZE 255
Rhyme 0:846e2321c637 40
Rhyme 0:846e2321c637 41 typedef void (*isr)();
Rhyme 0:846e2321c637 42 typedef void (*onAttributeSet)(const uint8_t requestId, const uint16_t attributeId, const uint16_t valueLen, const uint8_t *value);
Rhyme 0:846e2321c637 43 typedef void (*onAttributeSetComplete)(const uint8_t requestId, const uint16_t attributeId, const uint16_t valueLen, const uint8_t *value);
Rhyme 0:846e2321c637 44
Rhyme 0:846e2321c637 45 class iafLib {
Rhyme 0:846e2321c637 46 public:
Rhyme 0:846e2321c637 47 /**
Rhyme 0:846e2321c637 48 * create
Rhyme 0:846e2321c637 49 *
Rhyme 0:846e2321c637 50 * Create an instance of the afLib object. The afLib is a singleton. Calling this method multiple
Rhyme 0:846e2321c637 51 * times will return the same instance.
Rhyme 0:846e2321c637 52 *
Rhyme 0:846e2321c637 53 * @param mcuInterrupt The Arduino interrupt to be used (returned from digitalPinToInterrupt)
Rhyme 0:846e2321c637 54 * @param isrWrapper This is the isr method that must be defined in your sketch
Rhyme 0:846e2321c637 55 * @param attrSet Callback for notification of attribute set requests
Rhyme 0:846e2321c637 56 * @param attrSetComplete Callback for notification of attribute set request completions
Rhyme 0:846e2321c637 57 * @return iafLib * Instance of iafLib
Rhyme 0:846e2321c637 58 */
Rhyme 0:846e2321c637 59 static iafLib * create(PinName mcuInterrupt, isr isrWrapper,
Rhyme 0:846e2321c637 60 onAttributeSet attrSet, onAttributeSetComplete attrSetComplete, afSPI *theSPI);
Rhyme 0:846e2321c637 61
Rhyme 0:846e2321c637 62 //wsugi 20161128
Rhyme 0:846e2321c637 63 static void destroy();
Rhyme 0:846e2321c637 64
Rhyme 0:846e2321c637 65 /**
Rhyme 0:846e2321c637 66 * loop
Rhyme 0:846e2321c637 67 *
Rhyme 0:846e2321c637 68 * Called by the loop() method in your sketch to give afLib some CPU time
Rhyme 0:846e2321c637 69 */
Rhyme 0:846e2321c637 70 virtual void loop(void) = 0;
Rhyme 0:846e2321c637 71
Rhyme 0:846e2321c637 72 /**
Rhyme 0:846e2321c637 73 * getAttribute
Rhyme 0:846e2321c637 74 *
Rhyme 0:846e2321c637 75 * Request the value of an attribute be returned from the ASR-1.
Rhyme 0:846e2321c637 76 * Value will be returned in the attrSetComplete callback.
Rhyme 0:846e2321c637 77 */
Rhyme 0:846e2321c637 78 virtual int getAttribute(const uint16_t attrId) = 0;
Rhyme 0:846e2321c637 79
Rhyme 0:846e2321c637 80 /**
Rhyme 0:846e2321c637 81 * setAttribute
Rhyme 0:846e2321c637 82 *
Rhyme 0:846e2321c637 83 * Request setting an attribute.
Rhyme 0:846e2321c637 84 * For MCU attributes, the attribute value will be updated.
Rhyme 0:846e2321c637 85 * For IO attributes, the attribute value will be updated, and then onAttrSetComplete will be called.
Rhyme 0:846e2321c637 86 */
Rhyme 0:846e2321c637 87 virtual int setAttributeBool(const uint16_t attrId, const bool value) = 0;
Rhyme 0:846e2321c637 88
Rhyme 0:846e2321c637 89 virtual int setAttribute8(const uint16_t attrId, const int8_t value) = 0;
Rhyme 0:846e2321c637 90
Rhyme 0:846e2321c637 91 virtual int setAttribute16(const uint16_t attrId, const int16_t value) = 0;
Rhyme 0:846e2321c637 92
Rhyme 0:846e2321c637 93 virtual int setAttribute32(const uint16_t attrId, const int32_t value) = 0;
Rhyme 0:846e2321c637 94
Rhyme 0:846e2321c637 95 virtual int setAttribute64(const uint16_t attrId, const int64_t value) = 0;
Rhyme 0:846e2321c637 96
Rhyme 0:846e2321c637 97 virtual int setAttribute(const uint16_t attrId, const string &value) = 0;
Rhyme 0:846e2321c637 98
Rhyme 0:846e2321c637 99 virtual int setAttribute(const uint16_t attrId, const uint16_t valueLen, const char *value) = 0;
Rhyme 0:846e2321c637 100
Rhyme 0:846e2321c637 101 virtual int setAttribute(const uint16_t attrId, const uint16_t valueLen, const uint8_t *value) = 0;
Rhyme 0:846e2321c637 102
Rhyme 0:846e2321c637 103 /**
Rhyme 0:846e2321c637 104 * setAttributeComplete
Rhyme 0:846e2321c637 105 *
Rhyme 0:846e2321c637 106 * Call this in response to an onAttrSet. This lets the ASR-1 know that the set request has been handled.
Rhyme 0:846e2321c637 107 */
Rhyme 0:846e2321c637 108 virtual int setAttributeComplete(uint8_t requestId, const uint16_t attrId, const uint16_t valueLen, const uint8_t *value) = 0;
Rhyme 0:846e2321c637 109
Rhyme 0:846e2321c637 110 /**
Rhyme 0:846e2321c637 111 * isIdle
Rhyme 0:846e2321c637 112 *
Rhyme 0:846e2321c637 113 * Call to find out of the ASR-1 is currently handling a request.
Rhyme 0:846e2321c637 114 *
Rhyme 0:846e2321c637 115 * @return true if an operation is in progress
Rhyme 0:846e2321c637 116 */
Rhyme 0:846e2321c637 117 virtual bool isIdle() = 0;
Rhyme 0:846e2321c637 118
Rhyme 0:846e2321c637 119 /**
Rhyme 0:846e2321c637 120 * mcuISR
Rhyme 0:846e2321c637 121 *
Rhyme 0:846e2321c637 122 * Called by your sketch to pass the interrupt along to afLib.
Rhyme 0:846e2321c637 123 */
Rhyme 0:846e2321c637 124 virtual void mcuISR() = 0;
Rhyme 0:846e2321c637 125 };
Rhyme 0:846e2321c637 126 #endif //AFLIB_IAFLIB_H