Loom
Protected Attributes | List of all members
Loom_AS7262 Class Reference

AS7262 Visible spectrum spectral sensor module. More...

#include <AS7262.h>

Inheritance diagram for Loom_AS7262:
Inheritance graph
[legend]

Public Member Functions

CONSTRUCTORS / DESTRUCTOR
 Loom_AS7262 (LoomManager *manager, const byte i2c_address=0x49, const uint8_t mux_port=255, const bool use_bulb=false, const uint8_t gain=1, const uint8_t mode=3, const uint8_t integration_time=50)
 Constructor. More...
 
 Loom_AS7262 (LoomManager *manager, JsonArrayConst p)
 Constructor that takes Json Array, extracts args and delegates to regular constructor. More...
 
 ~Loom_AS7262 ()=default
 Destructor. More...
 
OPERATION
void measure () override
 Take any relevant measurements. More...
 
void package (JsonObject json) override
 Package a modules measurements or state. More...
 
PRINT INFORMATION
void print_config () const override
 Display the configuration settings of the module. More...
 
void print_measurements () const override
 Print the last set of measurements taken. More...
 
SETTERS
void enable_bulb (const bool enable)
 Set whether not bulb is used for active light source. More...
 
void set_gain (const uint8_t gain)
 Set gain. More...
 
void set_mode (const uint8_t mode)
 Set mode. More...
 
void set_integration_time (const uint8_t time)
 Set integration time. More...
 
- Public Member Functions inherited from LoomI2CSensor
 LoomI2CSensor (LoomManager *manager, const char *module_name, const LoomModule::Type module_type, const byte i2c_address, const uint8_t mux_port=255, const uint8_t num_samples=1)
 Constructor. More...
 
virtual ~LoomI2CSensor ()=default
 Destructor. More...
 
byte get_i2c_address () const
 Get the sensor's I2C address. More...
 
- Public Member Functions inherited from LoomSensor
 LoomSensor (LoomManager *manager, const char *module_name, const LoomModule::Type module_type, const uint8_t num_samples)
 Constructor. More...
 
virtual ~LoomSensor ()=default
 Destructor. More...
 
virtual void calibrate ()
 Calibration routine. More...
 
uint8_t get_num_samples () const
 Get the number of samples sensor is set to take. More...
 
void set_num_samples (const uint8_t n)
 Set the number of samples to take. More...
 
- Public Member Functions inherited from LoomModule
 LoomModule (LoomManager *manager, const char *module_name="Unknown", const Type module_type=Type::Unknown)
 Constructor. More...
 
virtual ~LoomModule ()=default
 Destructor. More...
 
virtual void second_stage_ctor ()
 Second stage construction. More...
 
virtual bool dispatch (JsonObject json)
 Route command to driver. More...
 
virtual void power_down ()
 Turn off any hardware. More...
 
virtual void power_up ()
 Turn on any hardware. More...
 
virtual void add_config (JsonObject json)
 Add configuration information to JsonObject. More...
 
Type get_module_type () const
 Get module type. More...
 
LoomManagerget_device_manager () const
 Get the device manager class if linked. More...
 
void get_module_name (char *buf) const
 Copy module name into buffer. More...
 
const char * get_module_name () const
 Get module name. More...
 
Verbosity get_print_verbosity () const
 Get print verbosity. More...
 
Verbosity get_package_verbosity () const
 Get package verbosity. More...
 
bool get_active () const
 Get whether or not the module should be treated as active. More...
 
Category category () const
 Get the category of the module. More...
 
virtual void link_device_manager (LoomManager *LM)
 Add pointer back to device manager. More...
 
void set_print_verbosity (const Verbosity v)
 Set print verbosity Controlls level of detail included in debug prints. More...
 
void set_package_verbosity (const Verbosity v)
 Set package verbosity. More...
 
void set_active (const bool enable)
 Set whether or not the module should be treated as active. More...
 
virtual void print_state () const
 Display current state of the module. More...
 

Protected Attributes

AS726X inst_AS7262
 Underlying AS7262 sensor manager instance. More...
 
uint16_t color_vals [6]
 Measured color band values (violet, blue, green, yellow, orange, red). More...
 
bool use_bulb
 Whether or not to use bulb. More...
 
uint8_t gain
 Gain setting. More...
 
uint8_t mode
 Sensor read mode. More...
 
uint8_t integration_time
 Integration time setting. More...
 
- Protected Attributes inherited from LoomI2CSensor
const byte i2c_address
 The sensor's I2C address. More...
 
const uint8_t port_num
 Used with multiplexer, keep track of port it is on. More...
 
- Protected Attributes inherited from LoomSensor
uint8_t num_samples
 How many samples to take and average each call to measure() More...
 
- Protected Attributes inherited from LoomModule
const Type module_type
 Module type. More...
 
LoomManagerdevice_manager
 Pointer to manager. More...
 
const String module_name_base
 The name of the module (Should have a DEFAULT but can be overriden if provided to constructor) More...
 
const char * module_name
 
bool active
 Whether or not the module should be treated as active. More...
 
Verbosity print_verbosity
 Print verbosity. More...
 
Verbosity package_verbosity
 Package verbosity. More...
 

Additional Inherited Members

- Public Types inherited from LoomModule
enum  Type {
  Type::Unknown = 0, Type::Other =1000, Type::Interrupt_Manager, Type::Sleep_Manager,
  Type::Multiplexer, Type::NTP, Type::TempSync, Type::WarmUp_Manager,
  Type::Sensor =2000, Type::Analog, Type::Digital, Type::I2C =2100,
  Type::ADS1115, Type::AS7262, Type::AS7263, Type::AS7265X,
  Type::FXAS21002, Type::FXOS8700, Type::LIS3DH, Type::MB1232,
  Type::MMA8451, Type::MPU6050, Type::MS5803, Type::SHT31D,
  Type::TMP007, Type::TSL2561, Type::TSL2591, Type::ZXGesture,
  Type::STEMMA, Type::SDI12 =2200, Type::Decagon5TM, Type::DecagonGS3,
  Type::SPI =2300, Type::MAX31855, Type::MAX31856, Type::L_SERIAL =2400,
  Type::K30, Type::L_RTC =3000, Type::DS3231, Type::PCF8523,
  Type::Actuator =4000, Type::Neopixel, Type::Relay, Type::Servo,
  Type::Stepper, Type::LogPlat =5000, Type::OLED, Type::SDCARD,
  Type::BATCHSD, Type::CommPlat =6000, Type::LoRa, Type::nRF,
  Type::Bluetooth, Type::InternetPlat =7000, Type::Ethernet, Type::WiFi,
  Type::LTE, Type::PublishPlat =8000, Type::GoogleSheets, Type::MaxPub,
  Type::SpoolPub, Type::SubscribePlats =9000, Type::MaxSub
}
 Enum to check against to when finding individual component managed by a LoomManager. More...
 
enum  Category {
  Category::Unknown =0, Category::Other =1, Category::Sensor =2, Category::L_RTC =3,
  Category::Actuator =4, Category::LogPlat =5, Category::CommPlat =6, Category::InternetPlat =7,
  Category::PublishPlat =8, Category::SubscribePlat =9
}
 Enum to classify modules. More...
 
- Static Public Member Functions inherited from LoomModule
static const char * enum_verbosity_string (const Verbosity v)
 Get string of name associated with verbosity enum. More...
 
static const char * enum_category_string (const Category c)
 Get string of the category associated with a Category. More...
 
- Protected Member Functions inherited from LoomModule
void print_module_label () const
 Print the module name as a label. More...
 

Detailed Description

AS7262 Visible spectrum spectral sensor module.

Resources

Constructor & Destructor Documentation

Loom_AS7262::Loom_AS7262 ( LoomManager manager,
const byte  i2c_address = 0x49,
const uint8_t  mux_port = 255,
const bool  use_bulb = false,
const uint8_t  gain = 1,
const uint8_t  mode = 3,
const uint8_t  integration_time = 50 
)

Constructor.

Parameters
[in]i2c_addressSet(Int) | <0x49> | {0x49} | I2C address
[in]mux_portInt | <255> | [0-16] | Port on multiplexer
[in]use_bulbBool | <false> | {true, false} | Whether or not to use bulb
[in]gainSet(Int) | <1> | { 0("1x"), 1("3.7x"), 2("16x"), 3("64x") } | Gain level
[in]modeSet(Int) | <3> | { 0("Continuous reading of VBGY"), 1("Continuous reading of GYOR"), 2("Continuous reading all channels"), 3("One-shot reading of all channels") } | Read mode
[in]integration_timeInt | <50> | [0-255] | Integration time (time will be 2.8ms * [integration value])
Loom_AS7262::Loom_AS7262 ( LoomManager manager,
JsonArrayConst  p 
)

Constructor that takes Json Array, extracts args and delegates to regular constructor.

Parameters
[in]pThe array of constuctor args to expand
Loom_AS7262::~Loom_AS7262 ( )
default

Destructor.

Member Function Documentation

void Loom_AS7262::enable_bulb ( const bool  enable)
inline

Set whether not bulb is used for active light source.

Parameters
[in]enableWhether or not to enable
void Loom_AS7262::measure ( )
overridevirtual

Take any relevant measurements.

Implements LoomSensor.

void Loom_AS7262::package ( JsonObject  json)
overridevirtual

Package a modules measurements or state.

Parameters
[out]jsonObject to put data into

Implements LoomModule.

void Loom_AS7262::print_config ( ) const
overridevirtual

Display the configuration settings of the module.

Reimplemented from LoomI2CSensor.

void Loom_AS7262::print_measurements ( ) const
overridevirtual

Print the last set of measurements taken.

Does not package the data.

Implements LoomSensor.

void Loom_AS7262::set_gain ( const uint8_t  gain)
inline

Set gain.

Parameters
[in]gainGain level: 0: 1x (power-on default), 1: 3.7x, 2: 16x, 3: 64x
void Loom_AS7262::set_integration_time ( const uint8_t  time)
inline

Set integration time.

Time will be 2.8ms * [integration value] (0-255), 50 is default

Parameters
[in]timeIntegration time
void Loom_AS7262::set_mode ( const uint8_t  mode)
inline

Set mode.

Parameters
[in]modeMode. 0: Continuous reading of VBGY 1: Continuous reading of GYOR 2: Continuous reading of all channels (power-on default) 3: One-shot reading of all channels

Member Data Documentation

uint16_t Loom_AS7262::color_vals[6]
protected

Measured color band values (violet, blue, green, yellow, orange, red).

Units: counts / (μW/cm^2).

uint8_t Loom_AS7262::gain
protected

Gain setting.

AS726X Loom_AS7262::inst_AS7262
protected

Underlying AS7262 sensor manager instance.

uint8_t Loom_AS7262::integration_time
protected

Integration time setting.

uint8_t Loom_AS7262::mode
protected

Sensor read mode.

bool Loom_AS7262::use_bulb
protected

Whether or not to use bulb.


The documentation for this class was generated from the following files: