Embedded Laboratory

Group of Electronics Hobbyist and Enthusiast.
Following are the some of our expertise areas :
Micro-controllers - AVR,Arduino,ARM,Cortex-M,PIC,8051.
Programming Language - C,C++, Visual Basic, MATLAB, Python, LabVIEW


Embedded Laboratory

Send Temperature and Humidity Values to Thing Speak and also plot the graph locally on TFT Using ESP32 and LVGL Graphics Library
This project is developed using ESP-IDF Framework and not with Arduino Framework

1 year ago | [YT] | 0

Embedded Laboratory

What will be the output of the following program?

int main()
{
int n[25];
n[0] = 100;
n[24] = 200;
printf ("%d %d\n", *n, *(n + 24) + *(n + 0));
return 0;
}

1 year ago | [YT] | 0

Embedded Laboratory

What will be the output of the following program?
Select the option below and answer why?

int main()
{
unsigned char array[] = {1, 2, 3, 4, 5, 6, 7};
printf("Value = %d, ", *(array) );
array++;
printf("Value = %d\n", *(array) );
return 0;
}

1 year ago | [YT] | 1

Embedded Laboratory

Simple Home Automation Project using ESP32 and Android Application Using MQTT Protocol.
The project can be extended very easily to add more device control and more data sensing using sensors.

1 year ago | [YT] | 3