kopia lustrzana https://github.com/pimoroni/pimoroni-pico
				
				
				
			
		
			
				
	
	
		
			266 wiersze
		
	
	
		
			10 KiB
		
	
	
	
		
			C++
		
	
	
			
		
		
	
	
			266 wiersze
		
	
	
		
			10 KiB
		
	
	
	
		
			C++
		
	
	
| #include "../../../libraries/breakout_as7262/breakout_as7262.hpp"
 | |
| 
 | |
| #define MP_OBJ_TO_PTR2(o, t) ((t *)(uintptr_t)(o))
 | |
| 
 | |
| // SDA/SCL on even/odd pins, I2C0/I2C1 on even/odd pairs of pins.
 | |
| #define IS_VALID_SCL(i2c, pin) (((pin) & 1) == 1 && (((pin) & 2) >> 1) == (i2c))
 | |
| #define IS_VALID_SDA(i2c, pin) (((pin) & 1) == 0 && (((pin) & 2) >> 1) == (i2c))
 | |
| 
 | |
| 
 | |
| using namespace pimoroni;
 | |
| 
 | |
| extern "C" {
 | |
| #include "breakout_as7262.h"
 | |
| 
 | |
| /***** Variables Struct *****/
 | |
| typedef struct _breakout_as7262_BreakoutAS7262_obj_t {
 | |
|     mp_obj_base_t base;
 | |
|     BreakoutAS7262 *breakout;
 | |
| } breakout_as7262_BreakoutAS7262_obj_t;
 | |
| 
 | |
| /***** Print *****/
 | |
| void BreakoutAS7262_print(const mp_print_t *print, mp_obj_t self_in, mp_print_kind_t kind) {
 | |
|     (void)kind; //Unused input parameter    
 | |
|     breakout_as7262_BreakoutAS7262_obj_t *self = MP_OBJ_TO_PTR2(self_in, breakout_as7262_BreakoutAS7262_obj_t);
 | |
|     BreakoutAS7262* breakout = self->breakout;
 | |
|     mp_print_str(print, "BreakoutAS7262(");
 | |
| 
 | |
|     mp_print_str(print, "i2c = ");
 | |
|     mp_obj_print_helper(print, mp_obj_new_int((breakout->get_i2c() == i2c0) ? 0 : 1), PRINT_REPR);
 | |
| 
 | |
|     mp_print_str(print, ", sda = ");
 | |
|     mp_obj_print_helper(print, mp_obj_new_int(breakout->get_sda()), PRINT_REPR);
 | |
| 
 | |
|     mp_print_str(print, ", scl = ");
 | |
|     mp_obj_print_helper(print, mp_obj_new_int(breakout->get_scl()), PRINT_REPR);
 | |
| 
 | |
|     mp_print_str(print, ", int = ");
 | |
|     mp_obj_print_helper(print, mp_obj_new_int(breakout->get_int()), PRINT_REPR);
 | |
| 
 | |
|     mp_print_str(print, ")");
 | |
| }
 | |
| 
 | |
| /***** Constructor *****/
 | |
| mp_obj_t BreakoutAS7262_make_new(const mp_obj_type_t *type, size_t n_args, size_t n_kw, const mp_obj_t *all_args) {
 | |
|     breakout_as7262_BreakoutAS7262_obj_t *self = nullptr;
 | |
| 
 | |
|     if(n_args == 0) {
 | |
|         mp_arg_check_num(n_args, n_kw, 0, 0, true);
 | |
|         self = m_new_obj(breakout_as7262_BreakoutAS7262_obj_t);
 | |
|         self->base.type = &breakout_as7262_BreakoutAS7262_type;
 | |
|         self->breakout = new BreakoutAS7262();
 | |
|     }
 | |
|     else {
 | |
|         enum { ARG_i2c, ARG_sda, ARG_scl, ARG_int };
 | |
|         static const mp_arg_t allowed_args[] = {
 | |
|             { MP_QSTR_i2c, MP_ARG_REQUIRED | MP_ARG_INT },
 | |
|             { MP_QSTR_sda, MP_ARG_REQUIRED | MP_ARG_INT },
 | |
|             { MP_QSTR_scl, MP_ARG_REQUIRED | MP_ARG_INT },
 | |
|             { MP_QSTR_int, MP_ARG_INT, {.u_int = BreakoutAS7262::PIN_UNUSED} },
 | |
|         };
 | |
| 
 | |
|         // Parse args.
 | |
|         mp_arg_val_t args[MP_ARRAY_SIZE(allowed_args)];
 | |
|         mp_arg_parse_all_kw_array(n_args, n_kw, all_args, MP_ARRAY_SIZE(allowed_args), allowed_args, args);
 | |
| 
 | |
|         // Get I2C bus.
 | |
|         int i2c_id = args[ARG_i2c].u_int;
 | |
|         if(i2c_id < 0 || i2c_id > 1) {
 | |
|             mp_raise_msg_varg(&mp_type_ValueError, MP_ERROR_TEXT("I2C(%d) doesn't exist"), i2c_id);
 | |
|         }
 | |
| 
 | |
|         int sda = args[ARG_sda].u_int;
 | |
|         if(!IS_VALID_SDA(i2c_id, sda)) {
 | |
|             mp_raise_ValueError(MP_ERROR_TEXT("bad SDA pin"));
 | |
|         }
 | |
| 
 | |
|         int scl = args[ARG_scl].u_int;
 | |
|         if(!IS_VALID_SCL(i2c_id, scl)) {
 | |
|             mp_raise_ValueError(MP_ERROR_TEXT("bad SCL pin"));
 | |
|         }
 | |
| 
 | |
|         self = m_new_obj(breakout_as7262_BreakoutAS7262_obj_t);
 | |
|         self->base.type = &breakout_as7262_BreakoutAS7262_type;
 | |
|         
 | |
|         i2c_inst_t *i2c = (i2c_id == 0) ? i2c0 : i2c1;
 | |
|         self->breakout = new BreakoutAS7262(i2c, sda, scl, args[ARG_int].u_int);
 | |
|     }
 | |
| 
 | |
|     self->breakout->init();
 | |
| 
 | |
|     return MP_OBJ_FROM_PTR(self);
 | |
| }
 | |
| 
 | |
| /***** Methods *****/
 | |
| mp_obj_t BreakoutAS7262_reset(mp_obj_t self_in) {
 | |
|     breakout_as7262_BreakoutAS7262_obj_t *self = MP_OBJ_TO_PTR2(self_in, breakout_as7262_BreakoutAS7262_obj_t);
 | |
|     self->breakout->reset();
 | |
| 
 | |
|     return mp_const_none;
 | |
| }
 | |
| 
 | |
| mp_obj_t BreakoutAS7262_device_type(mp_obj_t self_in) {
 | |
|     breakout_as7262_BreakoutAS7262_obj_t *self = MP_OBJ_TO_PTR2(self_in, breakout_as7262_BreakoutAS7262_obj_t);
 | |
|     return mp_obj_new_int(self->breakout->device_type());
 | |
| }
 | |
| 
 | |
| mp_obj_t BreakoutAS7262_hardware_version(mp_obj_t self_in) {
 | |
|     breakout_as7262_BreakoutAS7262_obj_t *self = MP_OBJ_TO_PTR2(self_in, breakout_as7262_BreakoutAS7262_obj_t);
 | |
|     return mp_obj_new_int(self->breakout->hardware_version());
 | |
| }
 | |
| 
 | |
| mp_obj_t BreakoutAS7262_firmware_version(mp_obj_t self_in) {
 | |
|     breakout_as7262_BreakoutAS7262_obj_t *self = MP_OBJ_TO_PTR2(self_in, breakout_as7262_BreakoutAS7262_obj_t);
 | |
| 
 | |
|     uint8_t major, minor, sub;
 | |
|     self->breakout->firmware_version(major, minor, sub);
 | |
| 
 | |
|     mp_obj_t tuple[3];
 | |
|     tuple[0] = mp_obj_new_int(major);
 | |
|     tuple[1] = mp_obj_new_float(minor);
 | |
|     tuple[2] = mp_obj_new_float(sub);
 | |
|     return mp_obj_new_tuple(3, tuple);
 | |
| }
 | |
| 
 | |
| mp_obj_t BreakoutAS7262_read(mp_obj_t self_in) {
 | |
|     breakout_as7262_BreakoutAS7262_obj_t *self = MP_OBJ_TO_PTR2(self_in, breakout_as7262_BreakoutAS7262_obj_t);
 | |
|     BreakoutAS7262::reading reading = self->breakout->read();
 | |
| 
 | |
|     mp_obj_t tuple[6];
 | |
|     tuple[0] = mp_obj_new_float(reading.red);
 | |
|     tuple[1] = mp_obj_new_float(reading.orange);
 | |
|     tuple[2] = mp_obj_new_float(reading.yellow);
 | |
|     tuple[3] = mp_obj_new_float(reading.green);
 | |
|     tuple[4] = mp_obj_new_float(reading.blue);
 | |
|     tuple[5] = mp_obj_new_float(reading.violet);
 | |
|     return mp_obj_new_tuple(6, tuple);
 | |
| }
 | |
| 
 | |
| mp_obj_t BreakoutAS7262_temperature(mp_obj_t self_in) {
 | |
|     breakout_as7262_BreakoutAS7262_obj_t *self = MP_OBJ_TO_PTR2(self_in, breakout_as7262_BreakoutAS7262_obj_t);
 | |
|     return mp_obj_new_int(self->breakout->temperature());
 | |
| }
 | |
| 
 | |
| mp_obj_t BreakoutAS7262_set_gain(size_t n_args, const mp_obj_t *pos_args, mp_map_t *kw_args) {
 | |
|     enum { ARG_self, ARG_gain };
 | |
|     static const mp_arg_t allowed_args[] = {
 | |
|         { MP_QSTR_, MP_ARG_REQUIRED | MP_ARG_OBJ },
 | |
|         { MP_QSTR_gain, MP_ARG_REQUIRED | MP_ARG_INT },
 | |
|     };
 | |
| 
 | |
|     mp_arg_val_t args[MP_ARRAY_SIZE(allowed_args)];
 | |
|     mp_arg_parse_all(n_args, pos_args, kw_args, MP_ARRAY_SIZE(allowed_args), allowed_args, args);
 | |
| 
 | |
|     int gain = args[ARG_gain].u_int;
 | |
|     if(gain < 0 || gain > 3) {
 | |
|         mp_raise_ValueError("mode not a valid value. Expected 0 to 3 (X1, X3_7, X16, X64)");
 | |
|     }
 | |
|     else {
 | |
|         breakout_as7262_BreakoutAS7262_obj_t *self = MP_OBJ_TO_PTR2(args[ARG_self].u_obj, breakout_as7262_BreakoutAS7262_obj_t);
 | |
|         self->breakout->set_gain((BreakoutAS7262::gain)gain);
 | |
|     }
 | |
| 
 | |
|     return mp_const_none;
 | |
| }
 | |
| 
 | |
| mp_obj_t BreakoutAS7262_set_measurement_mode(size_t n_args, const mp_obj_t *pos_args, mp_map_t *kw_args) {
 | |
|     enum { ARG_self, ARG_mode };
 | |
|     static const mp_arg_t allowed_args[] = {
 | |
|         { MP_QSTR_, MP_ARG_REQUIRED | MP_ARG_OBJ },
 | |
|         { MP_QSTR_mode, MP_ARG_REQUIRED | MP_ARG_INT },
 | |
|     };
 | |
| 
 | |
|     mp_arg_val_t args[MP_ARRAY_SIZE(allowed_args)];
 | |
|     mp_arg_parse_all(n_args, pos_args, kw_args, MP_ARRAY_SIZE(allowed_args), allowed_args, args);
 | |
| 
 | |
|     int mode = args[ARG_mode].u_int;
 | |
|     if(mode < 0 || mode > 3) {
 | |
|         mp_raise_ValueError("mode not a valid value. Expected 0 to 3 (CONT_YGNV, CONT_ROYG, CONT_ROYGBR, ONESHOT)");
 | |
|     }
 | |
|     else {
 | |
|         breakout_as7262_BreakoutAS7262_obj_t *self = MP_OBJ_TO_PTR2(args[ARG_self].u_obj, breakout_as7262_BreakoutAS7262_obj_t);
 | |
|         self->breakout->set_measurement_mode((BreakoutAS7262::measurement_mode)mode);
 | |
|     }
 | |
| 
 | |
|     return mp_const_none;
 | |
| }
 | |
| 
 | |
| mp_obj_t BreakoutAS7262_set_indicator_current(size_t n_args, const mp_obj_t *pos_args, mp_map_t *kw_args) {
 | |
|     enum { ARG_self, ARG_current };
 | |
|     static const mp_arg_t allowed_args[] = {
 | |
|         { MP_QSTR_, MP_ARG_REQUIRED | MP_ARG_OBJ },
 | |
|         { MP_QSTR_current, MP_ARG_REQUIRED | MP_ARG_INT },
 | |
|     };
 | |
| 
 | |
|     mp_arg_val_t args[MP_ARRAY_SIZE(allowed_args)];
 | |
|     mp_arg_parse_all(n_args, pos_args, kw_args, MP_ARRAY_SIZE(allowed_args), allowed_args, args);
 | |
|     
 | |
|     int current = args[ARG_current].u_int;
 | |
|     if(current < 0 || current > 3) {
 | |
|         mp_raise_ValueError("current not a valid value. Expected 0 to 3 (MA1, MA2, MA4, MA8)");
 | |
|     }
 | |
|     else {
 | |
|         breakout_as7262_BreakoutAS7262_obj_t *self = MP_OBJ_TO_PTR2(args[ARG_self].u_obj, breakout_as7262_BreakoutAS7262_obj_t);
 | |
|         self->breakout->set_indicator_current((BreakoutAS7262::indicator_current)current);
 | |
|     }
 | |
| 
 | |
|     return mp_const_none;
 | |
| }
 | |
| 
 | |
| mp_obj_t BreakoutAS7262_set_illumination_current(size_t n_args, const mp_obj_t *pos_args, mp_map_t *kw_args) {
 | |
|     enum { ARG_self, ARG_current };
 | |
|     static const mp_arg_t allowed_args[] = {
 | |
|         { MP_QSTR_, MP_ARG_REQUIRED | MP_ARG_OBJ },
 | |
|         { MP_QSTR_current, MP_ARG_REQUIRED | MP_ARG_INT },
 | |
|     };
 | |
| 
 | |
|     mp_arg_val_t args[MP_ARRAY_SIZE(allowed_args)];
 | |
|     mp_arg_parse_all(n_args, pos_args, kw_args, MP_ARRAY_SIZE(allowed_args), allowed_args, args);
 | |
| 
 | |
|     int current = args[ARG_current].u_int;
 | |
|     if(current < 0 || current > 3) {
 | |
|         mp_raise_ValueError("current not a valid value. Expected 0 to 3 (MA12, MA25, MA50, MA100)");
 | |
|     }
 | |
|     else {  
 | |
|         breakout_as7262_BreakoutAS7262_obj_t *self = MP_OBJ_TO_PTR2(args[ARG_self].u_obj, breakout_as7262_BreakoutAS7262_obj_t);
 | |
|         self->breakout->set_illumination_current((BreakoutAS7262::illumination_current)current);
 | |
|     }
 | |
| 
 | |
|     return mp_const_none;
 | |
| }
 | |
| 
 | |
| mp_obj_t BreakoutAS7262_set_integration_time(size_t n_args, const mp_obj_t *pos_args, mp_map_t *kw_args) {
 | |
|     enum { ARG_self, ARG_integration_time };
 | |
|     static const mp_arg_t allowed_args[] = {
 | |
|         { MP_QSTR_, MP_ARG_REQUIRED | MP_ARG_OBJ },
 | |
|         { MP_QSTR_integration_time, MP_ARG_REQUIRED | MP_ARG_OBJ },
 | |
|     };
 | |
| 
 | |
|     mp_arg_val_t args[MP_ARRAY_SIZE(allowed_args)];
 | |
|     mp_arg_parse_all(n_args, pos_args, kw_args, MP_ARRAY_SIZE(allowed_args), allowed_args, args);
 | |
| 
 | |
|     float integration_time = mp_obj_get_float(args[ARG_integration_time].u_obj);
 | |
| 
 | |
|     breakout_as7262_BreakoutAS7262_obj_t *self = MP_OBJ_TO_PTR2(args[ARG_self].u_obj, breakout_as7262_BreakoutAS7262_obj_t);
 | |
|     self->breakout->set_integration_time(integration_time);
 | |
| 
 | |
|     return mp_const_none;
 | |
| }
 | |
| 
 | |
| mp_obj_t BreakoutAS7262_set_leds(size_t n_args, const mp_obj_t *pos_args, mp_map_t *kw_args) {
 | |
|     enum { ARG_self, ARG_illumination, ARG_indicator };
 | |
|     static const mp_arg_t allowed_args[] = {
 | |
|         { MP_QSTR_, MP_ARG_REQUIRED | MP_ARG_OBJ },
 | |
|         { MP_QSTR_illumination, MP_ARG_REQUIRED | MP_ARG_BOOL },
 | |
|         { MP_QSTR_indicator, MP_ARG_REQUIRED | MP_ARG_BOOL },
 | |
|     };
 | |
| 
 | |
|     mp_arg_val_t args[MP_ARRAY_SIZE(allowed_args)];
 | |
|     mp_arg_parse_all(n_args, pos_args, kw_args, MP_ARRAY_SIZE(allowed_args), allowed_args, args);
 | |
|     
 | |
|     breakout_as7262_BreakoutAS7262_obj_t *self = MP_OBJ_TO_PTR2(args[ARG_self].u_obj, breakout_as7262_BreakoutAS7262_obj_t);
 | |
|     self->breakout->set_leds(args[ARG_illumination].u_bool, args[ARG_indicator].u_bool);
 | |
| 
 | |
|     return mp_const_none;
 | |
| }
 | |
| } |