![](/media/cache/img/default_profile.jpg.50x50_q85.jpg)
Integration of Ambient Light sensor VEML7700 with Nucleo board. ROS Enabled
main.cpp
- Committer:
- zillkhan
- Date:
- 2021-09-28
- Revision:
- 2:1d1f6cd9d8b1
- Parent:
- 1:ca82df4237eb
File content as of revision 2:1d1f6cd9d8b1:
#include "mbed.h" #include <ros.h> #include <std_msgs/Int16.h> #include "VEML7700.h" #ifndef MSU_VEML7700_I2C_ADDRESS #define MSU_VEML7700_I2C_ADDRESS 0x10 #endif #define PIN_SCL D15 #define PIN_SDA D14 ros::NodeHandle nh; std_msgs::Int16 data; ros::Publisher ALS("ALS", &data); VEML7700 *veml7700 = 0 ; int main() { uint16_t als ; veml7700 = new VEML7700(PIN_SDA, PIN_SCL, MSU_VEML7700_I2C_ADDRESS) ; veml7700->setALSConf(0x0000) ; veml7700->setPowerSaving(0x0000) ; nh.initNode(); nh.advertise(ALS); while (1) { //creates an eternal loop als = veml7700->getALS(); data.data = als; ALS.publish( &data ); nh.spinOnce(); wait_ms(1000); } }