Skip to content
Snippets Groups Projects
Select Git revision
  • b850edca80634dfb36cef5c91cbcd224d888e74c
  • main default protected
  • blm_dev_chan
  • release/1.4.0 protected
  • widgets_draw
  • return_of_melodic_demo
  • task_cleanup
  • mixer2
  • dx/fb-save-restore
  • dx/dldldld
  • fpletz/flake
  • dx/jacksense-headset-mic-only
  • release/1.3.0 protected
  • fil3s-limit-filesize
  • allow-reloading-sunmenu
  • wifi-json-error-handling
  • app_text_viewer
  • shoegaze-fps
  • media_has_video_has_audio
  • fil3s-media
  • more-accurate-battery
  • v1.4.0
  • v1.3.0
  • v1.2.0
  • v1.2.0+rc1
  • v1.1.1
  • v1.1.0
  • v1.1.0+rc1
  • v1.0.0
  • v1.0.0+rc6
  • v1.0.0+rc5
  • v1.0.0+rc4
  • v1.0.0+rc3
  • v1.0.0+rc2
  • v1.0.0+rc1
35 results

idf_ext.py

Blame
  • light_sensor.c 1.93 KiB
    #include "epicardium.h"
    
    #include "py/builtin.h"
    #include "py/obj.h"
    #include "py/runtime.h"
    
    static mp_obj_t mp_light_sensor_start()
    {
    	int status = epic_light_sensor_run();
    	if (status == -EBUSY) {
    		mp_raise_msg(
    			&mp_type_RuntimeError, "timer could not be scheduled"
    		);
    	}
    	return mp_const_none;
    }
    static MP_DEFINE_CONST_FUN_OBJ_0(light_sensor_start_obj, mp_light_sensor_start);
    
    static mp_obj_t mp_light_sensor_get_reading()
    {
    	uint16_t last;
    	int status = epic_light_sensor_get(&last);
    	if (status == -ENODATA) {
    		mp_raise_ValueError("sensor not running");
    		return mp_const_none;
    	}
    	return mp_obj_new_int_from_uint(last);
    }
    static MP_DEFINE_CONST_FUN_OBJ_0(
    	light_sensor_get_obj, mp_light_sensor_get_reading
    );
    
    static mp_obj_t mp_light_sensor_stop()
    {
    	int status = epic_light_sensor_stop();
    	if (status == -EBUSY) {
    		mp_raise_msg(
    			&mp_type_RuntimeError, "timer could not be stopped"
    		);
    	}
    	return mp_const_none;
    }
    static MP_DEFINE_CONST_FUN_OBJ_0(light_sensor_stop_obj, mp_light_sensor_stop);
    
    static mp_obj_t mp_light_sensor_read()
    {
    	return mp_obj_new_int_from_uint(epic_light_sensor_read());
    }
    static MP_DEFINE_CONST_FUN_OBJ_0(light_sensor_read_obj, mp_light_sensor_read);
    
    static const mp_rom_map_elem_t light_sensor_module_globals_table[] = {
    	{ MP_ROM_QSTR(MP_QSTR___name__), MP_ROM_QSTR(MP_QSTR_light_sensor) },
    	{ MP_ROM_QSTR(MP_QSTR_start), MP_ROM_PTR(&light_sensor_start_obj) },
    	{ MP_ROM_QSTR(MP_QSTR_stop), MP_ROM_PTR(&light_sensor_stop_obj) },
    	{ MP_ROM_QSTR(MP_QSTR_get_reading), MP_ROM_PTR(&light_sensor_get_obj) },
    	{ MP_ROM_QSTR(MP_QSTR_read), MP_ROM_PTR(&light_sensor_read_obj) },
    };
    static MP_DEFINE_CONST_DICT(
    	light_sensor_module_globals, light_sensor_module_globals_table
    );
    
    const mp_obj_module_t light_sensor_module = {
    	.base    = { &mp_type_module },
    	.globals = (mp_obj_dict_t *)&light_sensor_module_globals,
    };
    
    /* clang-format off */
    MP_REGISTER_MODULE(MP_QSTR_light_sensor, light_sensor_module, MODULE_LIGHT_SENSOR_ENABLED);