Total Pageviews

Wednesday, 3 July 2019

Raspberry Pi 4 Model B unboxing



I had recently ordered my Raspberry Pi 4 Model B with 4GB RAM variant and it is here.

As the demand for the 4GB RAM variant was so high they actually got out of stock just within a day, hence DNA solutions asked me if I would like to get my hands on the 2GB RAM variant and after my confirmation they sent me the 2GB RAM variant so that I could do a Raspberry Pi 4 Model B unboxing for all of you guys as soon as possible. 
There are three variants of Raspberry Pi 4 Model B :
- Raspberry PI 4B 1GB RAM
- Raspberry PI 4B 2GB RAM 
- Raspberry PI 4B 4GB RAM 
Below are the links where you can buy Raspberry Pi 4 Model B online in India 
Project and video by Pawandeepsingh Dhingra

Wednesday, 26 June 2019

Raspberry pi 4 model B Basics and Ordering Online in Hindi



Same video is also available in English: https://youtu.be/ctLidnAs_co

Raspberry pi organisation has recently launched their latest Raspberry pi 4 model B. इस वीडियो में आपको Raspberry pi 4B के बेसिक स्पेसिफिकेशन बताऊंगा.
अभी तक मैंने भी Rpi 4B खरीदा नहीं है. मैं आपको Raspberry pi 4b की बेसिक जानकारी दूंगा और Raspberry pi 4b ऑनलाइन ऑर्डर भी करूंगा
Raspberry pi 4B Model is a very powerful and efficient at handling tasks as compared to the older raspberry pi3 and 3b plus models. It can completely work as a computer cpu because of its powerful 1.5 GHz 64-bit processor.
The Raspberry pi 4 model B comes in three Variants. The only difference in in all the three variants is the Ram Capacity.

Three variants of raspberry pi 4 model b are:
- Raspberry pi 4 model B 1GB Ram
- Raspberry pi 4 model B 2GB Ram
- Raspberry pi 4 model B 4GB Ram

Specifications of latest raspberry pi 4b are as follows:
1) A 1.5GHz quad-core 64-bit ARM Cortex-A72 CPU (~3× performance)
2) 1GB, 2GB, or 4GB of LPDDR4 SDRAM
3) Full-throughput Gigabit Ethernet
4) Dual-band 802.11ac wireless networking
5) Bluetooth 5.0
6) Two USB 3.0 and two USB 2.0 ports
7) Dual monitor support, at resolutions up to 4K
8) VideoCore VI graphics, supporting OpenGL ES 3.x
9) 4Kp60 hardware decode of HEVC video
10) Complete compatibility with earlier Raspberry Pi products


For more in-depth details of Raspberry pi 4b please check: https://www.raspberrypi.org/products/...

You can buy all three variants of Raspberry Pi online from DNA Solutions
Raspberry PI 4B 1gb Ram: https://www.dnatechindia.com/raspberr...
Raspberry PI 4B 2gb Ram: https://www.dnatechindia.com/raspberr...
Raspberry PI 4B 4gb Ram: https://www.dnatechindia.com/raspberr...

Follow me on instagram: https://www.instagram.com/pawandeepsi...
Project and video by Pawandeepsingh Dhingra

Raspberry pi 4B Model key features and Whats new



Raspberry pi organisation has recently launched their latest Raspberry pi 4B Model and in this video I am going to talk about it's key features.
Even I have still not got my hands on Rpi 4B in this video itself I will be placing order online for my first new raspberry pi 4.
Raspberry pi 4B Model is a very powerful and efficient at handling tasks as compared to the older raspberry pi3 and 3b plus models. It can completely work as a computer cpu because of its powerful 1.5 GHz 64-bit processor.

The Raspberry Pi 4B model comes in three Variants. The only difference in in all the three variants is the Ram Capacity.

Three variants of raspberry pi 4 model b are:
- Raspberry PI 4B 1GB Ram
- Raspberry PI 4B 2GB Ram
- Raspberry PI 4B 4GB Ram

Specifications of latest raspberry pi 4b are as follows:
1) A 1.5GHz quad-core 64-bit ARM Cortex-A72 CPU (~3× performance)
2) 1GB, 2GB, or 4GB of LPDDR4 SDRAM
3) Full-throughput Gigabit Ethernet
4) Dual-band 802.11ac wireless networking
5) Bluetooth 5.0
6) Two USB 3.0 and two USB 2.0 ports
7) Dual monitor support, at resolutions up to 4K
8) VideoCore VI graphics, supporting OpenGL ES 3.x
9) 4Kp60 hardware decode of HEVC video
10) Complete compatibility with earlier Raspberry Pi products




For more in-depth details of Raspberry pi 4b please check: https://www.raspberrypi.org/products/...



You can buy all three variants of Raspberry Pi online from DNA Solutions
RPI4B 1GB Ram: https://www.dnatechindia.com/raspberr...
RPI4B 2GB Ram: https://www.dnatechindia.com/raspberr...
RPI4B 4GB Ram: https://www.dnatechindia.com/raspberr...

Follow me on instagram: https://www.instagram.com/pawandeepsi...
Project and video by Pawandeepsingh Dhingra

Sunday, 18 November 2018

Make mobile bluetooth controlled rover using Arduino uno | DIY | Tutorial



Arduino Code:

#include <AFMotor.h>   //import your motor shield library
AF_DCMotor motor1(1,MOTOR12_64KHZ); // set up motors.
AF_DCMotor motor2(2, MOTOR12_8KHZ);
AF_DCMotor motor3(3,MOTOR12_64KHZ); // set up motors.
AF_DCMotor motor4(4, MOTOR12_8KHZ);
char data;

void setup() {
  Serial.begin(9600); // begin serial communitication 
  Serial.println("Motor test!");
  motor3.setSpeed(250); //set the speed of the motors, between 0-255
motor4.setSpeed (250); 
 motor1.setSpeed(250); //set the speed of the motors, between 0-255
motor2.setSpeed (250); 
}

void loop() {

  if(Serial.available()>0)
  {
    data=Serial.read();
    if(data=='8') 
    {
   Serial.println ("I AM MOVING IN FORWARD DIRECTION !" );

    motor1.run(FORWARD); 
    motor2.run(FORWARD); 
    motor3.run(FORWARD); 
    motor4.run(FORWARD); 
   
}
  else if (data=='6') {
   Serial.println ("I JUST TURNED RIGHT !");
   delay (15);
 
  motor1.run(BACKWARD);
 motor2.run(FORWARD); 
  motor3.run(BACKWARD); 
   motor4.run(FORWARD); 
  } 
  else if (data=='4') {
   Serial.println ("I JUST TURNED LEFT !");
   delay (15);
 
   motor1.run(FORWARD);
   motor2.run(BACKWARD); 
   motor3.run(FORWARD); 
   motor4.run(BACKWARD);
  } 
  else if (data=='2') {
   Serial.println ("I AM MOVING IN BACKWARD DIRECTION !");
   delay (15);
   motor1.run(BACKWARD);
   motor2.run(BACKWARD); 
   motor3.run(BACKWARD); 
   motor4.run(BACKWARD); 
  } 
 
else if (data=='5') {
   Serial.println ("STOPPED");
   delay (15);
   motor3.run(RELEASE);
    motor4.run(RELEASE);
   motor2.run(RELEASE); 
   motor1.run(RELEASE); 
  }  //RELEASE IS COMMAND TO STOP MOTOR
}
}



Sunday, 28 October 2018

Interfacing NEMA 23 | NEMA 17 | NEMA 34 with TB6600 stepper motor driver



 Like, Share and Subscribe for more projects and tutorials

Code:

const int stepPin = 9;
const int dirPin = 8;
const int enPin = 13;
void setup() {
  pinMode(stepPin,OUTPUT);
  pinMode(dirPin,OUTPUT);

  pinMode(enPin,OUTPUT);
  digitalWrite(enPin,LOW);
 
}
void loop() {
 
  digitalWrite(dirPin,HIGH);     //  anticlockwise direction
  for(int x = 0; x < 800; x++) {
    digitalWrite(stepPin,HIGH);
    delayMicroseconds(500);
    digitalWrite(stepPin,LOW);
    delayMicroseconds(500);
  }
 delay(1000); // One second delay

  digitalWrite(dirPin,LOW);    // clockwise driection
  for(int x = 0; x < 800; x++) {
    digitalWrite(stepPin,HIGH);
    delayMicroseconds(500);
    digitalWrite(stepPin,LOW);
    delayMicroseconds(500);
  }
  delay(1000);
 
}





Thursday, 20 September 2018

Make 11.1 v 5200mAH Battery bank at home | No soldering | Just in 5 minutes



Hey Guys I am Pawandeepsingh Dhingra and In this video I will be showing you how to make a 11.1 volt 5200 mAH battery pack using some lithium ion batteries. For this project we will also need a solder less battery pack kit using which we can connect batteries in series and parallel combination without spot welding and soldering.

DIY 18650 Solderless Battery Bank kit: http://www.dnatechindia.com/diy-solde...
18650 2600mah original samsung batteries: http://www.dnatechindia.com/samsung-i...
DNA Technology Electronics Component Shop in India: http://www.dnatechindia.com/

Monday, 27 August 2018

Open your door lock using password | Arduino Solenoid Door Latch | DIY

#include <Keypad.h>
char* password = "342";  // change the password here, just pick any 3 numbers
int position = 0;
const byte ROWS = 4;
const byte COLS = 4;
char keys[ROWS][COLS] = {
{'1','2','3','A'},
{'4','5','6','B'},
{'7','8','9','C'},
{'*','0','#','D'}
};

byte rowPins[ROWS] = { 9, 8, 7, 6 };
byte colPins[COLS] = { 5, 4, 3, 2 };
Keypad keypad = Keypad( makeKeymap(keys), rowPins, colPins, ROWS, COLS );
int Lock = 13;

void setup()
{

pinMode(Lock, OUTPUT);
LockedPosition(true);
}

void loop()
{
char key = keypad.getKey();
if (key == '*' || key == '#')
{
position = 0;
LockedPosition(true);
}
if (key == password[position])
{
position ++;
}
if (position == 3)
{
LockedPosition(false);
}
delay(100);
}
void LockedPosition(int locked)
{
if (locked)
{
digitalWrite(Lock, LOW);
}
else
{
digitalWrite(Lock, HIGH);
}
}

Friday, 2 March 2018

Arduino uno and LCD interfacing without potentiometer + arduino code





Arduino Code

Arduino LCD interfacing code

//copy this whole text and paste it in your arduino ide and then upload it to arduino
//code by www.youtube.com/onlyinnovative
//Like, Share and Subscribe
/*
 * LCD pins- Arduino pins
 vss-gnd
 vdd-5v
 vo-6
 rs-12
 rw-gnd
 e-11
 d4-5
 d5-4
 d6-3
 d7-2
 A-5v
 K-gnd

 */
#include <LiquidCrystal.h> 
int Contrast=75;
 LiquidCrystal lcd(12, 11, 5, 4, 3, 2); 

 void setup()
 {
    analogWrite(6,Contrast);
     lcd.begin(16, 2);
  } 
     void loop()
 { 
     lcd.setCursor(0, 0);
     lcd.print("Only Innovative");
   
    lcd.setCursor(0, 1);
     lcd.print("Subscribe");
 }