How to transfer screenshots from your phone to your pc or laptop

If you are using Samsung phones then you might have noticed that when you connect your phone to the computer you can't see any "screenshots" folder. So in this post I will show you how you can get your screenshots form your phone to your computer without any app. I have tried this in Samsung Galaxy s5mini and I think it will work in other Samsung phones too.

Some people might want to know how to take a screenshot. So to take a screenshot you need to press the power and home button at the same time and it will take a screenshot. As you can see the above picture.


OK, let's start with the first step:
First go to the Gallery then click on the screenshots album.

Step2:
In this step you need to do three thing, select the screen shot you want. Then click on the three dots on the top right hand corner. Then click on Move to album. As you can see in the picture below.

Step3:
In this step you just need to click on the camera with the small memory card on the side.

That's it, now if you open your DCIM folder of your memory card you will be able to see the screen shot.

Enjoy!! Don't forget to let comment bellow if you have got any other way. Thanks




how to transfer screenshots from phone to computer. how to screenshot on a pc. how do you screenshot on a pc. how to screenshot on galaxy s5. screenshot samsung s5. how to do screenshot on pc. print screen samsung s5. screenshot laptop. how to print screen on a samsung laptop. how to send a screenshot on pc. how do i screenshot on a pc. how to print screen on samsung laptop. screenshot on pc. how to screen shot on samsung phones. screenshot galaxy s5. how to screenshot with s5. screenshot on a laptop. how to screen shot on a s7. how to screenshot on samsung s5. how to do screenshot on s7. how to take a screen shot galaxy s7. screenshot samsung laptop. how do i screenshot on my laptop. how do you take a screenshot on s7. screenshot on a pc. printscreen samsung s5. laptop screenshot how to screenshot on laptop. how to do a screenshot on a pc. how to do a screenshot on s7. how to screenshot on samsung laptop. print screen samsung laptop. how to screenshot in pc. how do you screenshot on your phone. how to send screenshot on pc. how to screen shot on samsung phone. samsung galaxy s5 screenshot. screenshot on phone. samsung s5 screenshot. screenshot on laptop. how do i take a screenshot on my galaxy s5. how to transfer photos from samsung galaxy s5 to laptop. how to get screenshot on pc. how to screenshot on pc laptop. screenshot samsung galaxy s5. can you screenshot on a pc.

how do i take a screenshot on my s7. how do i take a screenshot on samsung s7. how to screenshot with samsung s5. how to do a screenshot on samsung s5. print screen samsung galaxy s5. how to screenshot with galaxy s5. screen shot galaxy s5. how to screenshot on s5 mini. how to screenshot a picture on a laptop. how to screenshot on s5. how to take a screen shot on samsung s5. how to take a screenshot on a galaxy s5. samsung s5 screen shot. screenshot android galaxy s5. phone screenshot. how do i screenshot on my samsung phone. screenshots samsung s5. how do you screenshot on a laptop. how to take a screenshot on galaxy s5. how to take a screenshot on an s7. how to screenshot with s7. transfer switch screenshots to pc. how to take a screen shot on a galaxy s5. how to screen shot samsung s5. how to screenshot galaxy s5. screen shot on s5. how to screen shot galaxy s5. how do you screenshot on galaxy s5. how to copy a screenshot on pc. print screen galaxy s5. how do i screenshot on a laptop. samsung galaxy s5 screen shot. how to take screenshot on galaxy s5. how to transfer photos from galaxy s5 to computer. screenshot s7 how to. how to screenshot on your laptop. how to screenshot on a pc laptop

how to take a screen shot on galaxy s7. how do i screenshot on laptop. how do you screenshot on your laptop. how to screenshot on a galaxy s5. how to screenshot on samsung galaxy s5. how to print screen in samsung laptop. screen shot on galaxy s5. screenshot in laptop. screen shot samsung galaxy s5. how to screen shot on a s5. how to screen shot on samsung s7. how to do screenshot on galaxy s7. how to do a screenshot on galaxy s7. samsung laptop screenshot. how to find screenshot on pc. how to screenshot on my laptop. how do i screenshot my laptop. how do i take a screenshot on galaxy s7. can i screenshot on my laptop. how to screenshot on a samsung laptop. screenshots laptop. transfer screenshots from switch to pc. how to screen shot on a galaxy s5. how do you screenshot on a samsung laptop. screenshot on samsung laptop. how do i screenshot on my pc. how to take a screenshot on samsung galaxy a3. screen shot on samsung s5. how to screenshot samsung s5. how do you screenshot on a samsung s5.

how do you take a screenshot on a galaxy s5. how to screen shot on samsung s5. how to screenshot on a laptop. how to take screenshot with samsung s5. how do i send a screenshot from my phone. how to take a screenshot samsung s5. how do i screenshot on my galaxy s5. how to take a screenshot on samsung galaxy s5. how to take screenshots on s5. how to screen shot on a samsung s5. screenshot on samsung galaxy s5. how to do screenshot on samsung s5. how to take a screenshot on samsung s5. laptop screenshots. how to print screen on samsung s5. how to screenshot in laptop. how screenshot on a laptop. how to connect s5 to computer. how to take a screenshot galaxy s5. how to print screen on samsung computer. screenshot with galaxy s5. galaxy s5 screen shot.

Why I see empty folder when I connect my phone to my pc

This is what happened to me few times with my Samsung Galaxy S5 mini. And I think it happens to other Samsung phones too. When I tried to connect to my PC or laptop it was showing empty folder only. Like the picture below.


What is the solution?
Well, it is very simple. First unlock your phone then connect to the PC or laptop. I think this (empty folder) is for security and privacy reason. That's why the computer does not want to show your stuffs to someone else. I mean if it shows then it would be very easy for other people to access your stuffs. Just by connecting your phone to other PCs.

Note:
By unlocking your phone. I meant turn it on and unlock it by putting password, slide or finger print what ever you have set to unlock your phone.

That's all. I wanted the tips to be nice and simple, that's why I don't like to put too many other stuff in it. Please let me know if it helps you. Thanks

Ad

How to make illusion of moving light with Arduino


If you want to make illusion of moving light then it is very easy to make it with Arduino. Just by turning on and off the leds for certain milliseconds, you can make the light flow like water.

Settings:
  digitalWrite(led1, HIGH);   // Turn the LED on
  delay(250);               // Wait for miliseconds. You can change this for any amount you want.
  digitalWrite(led1, LOW);    // Turn the LED off
  delay(1);               // wait for a milisecond. You can change this for any amount you want.


The sketch is in the box. 

int led1 = 3;
int led2 = 4;
int led3 = 5;
int led4 = 6;


// the setup routine runs once when you press reset:
void setup() {               
  // initialize the digital pin as an output.
  pinMode(led1, OUTPUT); 
  pinMode(led2, OUTPUT);
  pinMode(led3, OUTPUT); 
  pinMode(led4, OUTPUT);  
}

// the loop routine runs over and over again forever:
void loop() {
  digitalWrite(led1, HIGH); 
  delay(250);             
  digitalWrite(led1, LOW);   
  delay(1);            
 
  digitalWrite(led2, HIGH); 
  delay(100);             
  digitalWrite(led2, LOW);  
  delay(1); 
 
  digitalWrite(led3, HIGH); 
  delay(100);             
  digitalWrite(led3, LOW);  
  delay(1);
 
  digitalWrite(led4, HIGH); 
  delay(275);             
  digitalWrite(led4, LOW);  
  delay(1);
 
  digitalWrite(led3, HIGH); 
  delay(50);             
  digitalWrite(led3, LOW);  
  delay(1);
 
  digitalWrite(led2, HIGH); 
  delay(50);             
  digitalWrite(led2, LOW);  
  delay(1);

}

Watch the video to see the sketch in action.  




How to make animated banners without photoshop

In this post you will find out how easily you can make an animated or flashy picture. Which is of course you can use as a banner, when you make it in banner size.
Before we go on to the first step, we need to keep in mind that to make an animated picture we need to have few pictures.

OK, Let's go on to the first step:
Open  paint on your computer. If you have windows then you know what I'm taking about.

Step2:
Resize the picture. Make sure you put the pixel numbers properly as your banner requires.

Step3:
Write something or add other picture to it and make few copy of it. In my case I've made 3 copies.

Step4:
Go to this site http://gifmaker.me/  and upload the pictures. After setting the speed click on Create GIF Animation button.

 That's it, your animated banner is ready. You can see the banner below in action.
 

What do i need to get started with arduino

In this post I will tell you how easily someone can start programming Arduino and make amazing things.

What is Arduino?
well, Arduino is an open-source computer hardware and software company, project and user community that designs and manufactures microcontroller-based kits for building digital devices and interactive objects that can sense and control the physical world. Click here if you want to know more about it because in this post I just want to talk about the things that you need, to start with.

Things you need: 
1) Arduino board. Most people like Arduino Uno but my first Arduino board was Arduino mega 2560. Which has 53 digital pins, 5 ground pins, 3v pin, 5v pin and many more, that means you can control many things with single board. You can even start with Arduino Nano, which is very small but it will give you a bit of test how the big boards function.


2) Some jumper wires. Remember there are two kind of jumper wires male and female. Try to buy both if you can.

3) A breadboard. This is where you join everything up.

4) Arduino IDE. This is the software, through which you can program what ever you want. You can download it from Arduino's official site. Make sure you download the appropriate version of the software (IDE) which is compatible with you computer.


Note:
After installing the the IDE make sure you set the appropriate board by going to Tools >> Board >> then choose which ever board you have. In my case chose Arduino Mega 2560 or Mega ADK because I have Arduino Mega 2560.



What you can do with Arduino?
 Well, you can watch these videos and see how people have made some interesting stuffs with it.




 And so on.... Are you thinking to get one soon? Let me know in the comment below. Thanks


How to delete cover photo from google+


OK, let me tell you what really happened to me before I started writing this post. I uploaded few cover photo on Google+, and at that time I was thinking the pictures are looking cool and I kept uploading them. And if I didn't like any of my cover picture I used to change it with some other picture and think that when I change the picture it's deletes the old one. That's because in desktop version you can't see the old cover pictures. But it keeps saving untill you delete them.

How did i find out?
Once I was browsing my profile without logging in, on my phone. And saw some old cover pictures (which I didn't like it) and wanted to delete it immediately. But after logging in I couldn't find them at all. So I started looking for the solution, after some hard search on the net I found out the solution. And here you go.

Step1:  
Go to this site called https://picasaweb.google.com/home make sure you log in, if you haven't logged in already.
Step2:
There should be an album called scrapbook photos. In this step you can delete whole album at once or you can delete the picture that you don't like. 

That's all, hopefully it helps you.

Related posts:
How to delete picture from hangout chat history

Ad




................
how to remove cover photo from google account. delete scrapbook photos google. how to delete google scrapbook photos. how to delete scrapbook photos. google cover photo. google+ cover photo. how to change scrapbook photos google+. how to delete cover photo. gmail cover photo. how to delete cover photo post. delete google plus photos. how to delete google+. how to delete a picture on google. delete cover photo. how to delete cover photos. how to delete scrapbook photos google+. how to remove gmail cover photo. how to delete google plus photos. how to delete google+ account. how to remove cover photo in gmail. google cover photo change. 

how to delete photos from google plus. how to delete pictures from google plus. remove google plus photo. google account cover photo. gmail cover photo change. how to delete google profile picture without google+. google cover photos. how do i delete my google+ account. 

how to delete google+ photos. how to change gmail cover photo. change google cover photo. delete cover photo update post. delete cover photo post. gmail change cover photo. how to change google cover photo. google account cover photo change. how to remove cover photo. how to delete photos on google plus. google plus cover photo. gmail scrapbook photos. photos.google.comm. how to change cover photo on gmail. change my gmail cover photo. how to delete pictures on google plus. google change cover photo. how to delete photos in google plus. how to delete photo from google. remove photo from google. google cover. delete google+.

How to create a .h file for Arduino library



As you might already know that notepad is a very powerful windows built in software. Which you can use for many things. For example writing normal texts files, editing software files and many more. In this post I will focus on how to write a .h file with it.

Step1:
Go to your desktop and right click on an empty space choose New then Text Document.



Step2:
Copy the code below and paste into the file.

//
//    FILE: dht11.h
// VERSION: 0.4.1
// PURPOSE: DHT11 Temperature & Humidity Sensor library for Arduino
// LICENSE: GPL v3 (http://www.gnu.org/licenses/gpl.html)
//
// DATASHEET: http://www.micro4you.com/files/sensor/DHT11.pdf
//
//     URL: http://playground.arduino.cc/Main/DHT11Lib
//
// HISTORY:
// George Hadjikyriacou - Original version
// see dht.cpp file
//

#ifndef dht11_h
#define dht11_h

#if defined(ARDUINO) && (ARDUINO >= 100)
#include <Arduino.h>
#else
#include <WProgram.h>
#endif

#define DHT11LIB_VERSION "0.4.1"

#define DHTLIB_OK                0
#define DHTLIB_ERROR_CHECKSUM    -1
#define DHTLIB_ERROR_TIMEOUT    -2

class dht11
{
public:
    int read(int pin);
    int humidity;
    int temperature;
};
#endif
//
// END OF FILE
//
  
 
Step3:
It's time to save the file so go to File > then click on Save As after clicking on save as you need to keep few things in your mind. Name the file, in this case dht11 and make sure you write .h  at the end and file type should be All Files and the last thing choose Encoding as ANSI then click save. That's it you've made your .h file with Notepad.


You can use the same method to create other files like .ino, .cpp and many more.

Note:
Remember which ever file you edit don't delete the file name from the dot for example .php, .html, .dll, and .h or what ever name you see. And another thing is that backup the file before you edit it. Because if you make any mistake in the coding you can always replace with the backup ones.

I hope this will help you in lot of places. Thanks



How to remove an account from android tablets

Well, it's very easy I will show you how to do it in just few simple steps.

1. Click on the settings.

2. Click on accounts.

3. Click Google. 

4. Click on the email address that you want to remove.

5. Click on the three dots at top right hand corner.


6. Finally click on the remove account.

That's it! That's how you remove an account from an andriond tablet. I did this on my Nexus 7.

If you are thinking about how to add an accout, then that's simple too. Just click on Settings >> Accounts >> Add account and simply follow the instructions. 



Newly posted:
Reason why rich getting richer and poor getting poorer