Posts

Showing posts from September, 2019

How to create a HIDDEN Folder ?

Image
Hello world,  Here is a CL3EVER-TIP  !!! Were you ever admiring "How to hide files or create a hidden folder yourself on your machine"? Here is a trick to do so, follow up......................... . First, Go to your desktop or open any window where you want to create a hidden folder. Then,->>  Right click ->> New ->> Folder. The same works anywhere inside also. Let me explain you there. Add, folder now. It looks something like so. The trick come here now. As soon as you add folder, your machine will ask you for a name.(see above pic) Press ->> Alt + 255 (i.e, Alt key and 255 on your num pad) Use 255 on your Num pad which is on the right side of your keyboard. Now, it looks so, Folder with "NONAME". Want to make it invisible now?? Then, Go to ->> Right click ->> Properties ->> Customisation. Now, Go to '

IMU-6050 6-Axis Sensor Interphase with Arduino

Image
HELLO WORLD, This is the project of IMU-6050 interphase with Arduino UNO for measuring 6-axis (acceleration, gyro) i.e, 6 degrees of freedom with Temperature sensor. OVERVIEW , IMU-6050,  is an 6-axis sensor having 3-axis accelerometer and 3-axis gyroscope with tempertaure sensor embedded. It looks so, It is an 8-pin sensor with accelerometer, gyro and temperature sensor. CIRCUIT / WORKING , Connect the circuit as shown below........., The pinout is shown below. CODE, Execute the following code on Arduino IDE. #include "Wire.h" const int MPU_ADDR = 0x68; int16_t accelerometer_x, accelerometer_y, accelerometer_z; int16_t gyro_x, gyro_y, gyro_z; int16_t temperature; char tmp_str[7]; char* convert_int16_to_str(int16_t i) { sprintf(tmp_str, "%6d", i); return tmp_str; } void setup() { Serial.begin(9600); Wire.begin(); Wire.beginTransmission(MPU_ADDR); Wire.write(0x6B); Wire.write(0); Wire.endTransmission(tr

TOP-25 Arduino Projects

HELLO WOrLd ,............ Here is a set of arduino projects  for beginers!!! Top 25 Arduino projects with code are explained here.  Go through the same. click here      to open it. Enjoy !! happy time.