/* * Copyright (c) 2017 Samsung Electronics Co., Ltd All Rights Reserved * * Contact: Jin Yoon * Geunsun Lee * Eunyoung Lee * Junkyu Han * * 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 #include #include #include #include #include "log.h" #include "controller.h" #include "resource.h" #define I2C_BUS_1 0x1 #define GPIO_NOT_USED -1 #define GPIO_ULTRASONIC_TRIG_NUM_1 20 #define GPIO_ULTRASONIC_ECHO_NUM_1 21 #define GPIO_INFRARED_MOTION_NUM_1 4 #define I2C_ILLUMINANCE_FIRST_PIN_1 3 typedef struct app_data_s { Ecore_Timer *getter_timer[PIN_MAX]; } app_data; static Eina_Bool _infrared_motion_getter_timer(void *data) { int value = 0; retv_if(resource_read_infrared_motion_sensor(GPIO_INFRARED_MOTION_NUM_1, &value) == -1, ECORE_CALLBACK_CANCEL); _I("Infrared Motion Value is [%d]", value); return ECORE_CALLBACK_RENEW; } static Eina_Bool _ultrasonic_getter_timer(void *data) { double value = 0; retv_if(resource_read_ultrasonic_sensor(GPIO_ULTRASONIC_TRIG_NUM_1, GPIO_ULTRASONIC_ECHO_NUM_1, &value) == -1, ECORE_CALLBACK_CANCEL); _I("Ultra Sonic Distance is [%d cm]", value); return ECORE_CALLBACK_RENEW; } static Eina_Bool _illuminance_getter_timer(void *data) { int value = 0; retv_if(resource_read_illuminance_sensor(I2C_BUS_1, &value) == -1, ECORE_CALLBACK_CANCEL); _I("Ultra Sonic Distance is [%d lux]", value); return ECORE_CALLBACK_RENEW; } static bool service_app_create(void *data) { app_data *ad = data; /* One Pin Sensor */ ad->getter_timer[GPIO_INFRARED_MOTION_NUM_1] = ecore_timer_add(3.0, _infrared_motion_getter_timer, ad); if (!ad->getter_timer[GPIO_INFRARED_MOTION_NUM_1]) { _D("Failed to add infrared motion getter timer"); return false; } /* Two Pins Sensor */ ad->getter_timer[GPIO_ULTRASONIC_TRIG_NUM_1] = ecore_timer_add(1.0, _ultrasonic_getter_timer, ad); if (!ad->getter_timer[GPIO_ULTRASONIC_TRIG_NUM_1]) { _D("Failed to add ultra sonic getter timer"); return false; } /* I2C Protocol Sensor */ ad->getter_timer[I2C_ILLUMINANCE_FIRST_PIN_1] = ecore_timer_add(1.0, _illuminance_getter_timer, ad); if (!ad->getter_timer[I2C_ILLUMINANCE_FIRST_PIN_1]) { _D("Failed to add ultra sonic getter timer"); return false; } return true; } static void service_app_terminate(void *data) { app_data *ad = (app_data *)data; for (int i = 0; i < PIN_MAX; i++) { if (ad->getter_timer[i]) { ecore_timer_del(ad->getter_timer[i]); } } resource_close_all(); free(ad); } static void service_app_control(app_control_h app_control, void *data) { // Todo: add your code here. } static void service_app_lang_changed(app_event_info_h event_info, void *user_data) { /*APP_EVENT_LANGUAGE_CHANGED*/ } static void service_app_region_changed(app_event_info_h event_info, void *user_data) { /*APP_EVENT_REGION_FORMAT_CHANGED*/ } static void service_app_low_battery(app_event_info_h event_info, void *user_data) { /*APP_EVENT_LOW_BATTERY*/ } static void service_app_low_memory(app_event_info_h event_info, void *user_data) { /*APP_EVENT_LOW_MEMORY*/ } int main(int argc, char* argv[]) { app_data *ad = NULL; int ret = 0; service_app_lifecycle_callback_s event_callback; app_event_handler_h handlers[5] = {NULL, }; ad = calloc(1, sizeof(app_data)); event_callback.create = service_app_create; event_callback.terminate = service_app_terminate; event_callback.app_control = service_app_control; service_app_add_event_handler(&handlers[APP_EVENT_LOW_BATTERY], APP_EVENT_LOW_BATTERY, service_app_low_battery, &ad); service_app_add_event_handler(&handlers[APP_EVENT_LOW_MEMORY], APP_EVENT_LOW_MEMORY, service_app_low_memory, &ad); service_app_add_event_handler(&handlers[APP_EVENT_LANGUAGE_CHANGED], APP_EVENT_LANGUAGE_CHANGED, service_app_lang_changed, &ad); service_app_add_event_handler(&handlers[APP_EVENT_REGION_FORMAT_CHANGED], APP_EVENT_REGION_FORMAT_CHANGED, service_app_region_changed, &ad); ret = service_app_main(argc, argv, &event_callback, ad); return ret; }