• Home
  • Prakash
    • R and D
    • Smart Home
  • Basics
    • Capacitors
      • Color codeing Disc Capacitor Capacitor characterstics Polarity Non Polarity Series Connection Parallel Connection
    • Diodes
      • Zener Diode Light Emitting Diode Signal Diode Photo Diode
    • Inductors
    • Transistor
      • Silicon Germenium NPN PNP MOSFET SCR
    • Resistors
      • Color codeing 4-Band 5-Band Series Parallel Potential Meter
    • Logics
      • Analog Logic
      • Digital Logic
      • Hexa Decimal Numbers
      • Octal Numbers
      • Binary Fraction
      • Binay to Decimal
    • OP-Amplifiers
      • Basics
      • Oscillators
      • Transistor Switch
      • 555 IC circuits
      • Waveform Generators
      • 741 IC Circuits
    • Power supply
      • Transformer
      • Halfwave Rectifier
      • Fullwave Rectifier
      • Bridge Rectifier
      • 78xx Series
      • 0 to 30v Regulator
  • Modules
    • H-Bridge
      • L293D Bridge
      • Relay Bridge
    • RF 434MHz Modules
    • Relay Modules
    • Push to ON switch
    • Push to OFF switch
  • Sensors
    • Analog sensors List-1
      • LDR Photo Diode Solar Cell Transducers Temperature Humidity Sensor Soil Moisture Ranger Sensor Range Detection
    • Analog sensors List-2
      • Flame Sensor Force Sensor Flex Sensor Ambient Sensor Motion Sensor Vibration Sensor Sound Sensor UltraSonic Sensor GrayScale Sensor
    • Digital Sensors
      • Touch Sensor Tilt Sensor Signal
    • 3-Axis Sensor
    • Gyro Sensor
  • Projects
    • Embedded
      • Mini Projects 8051 Arduino NodeMCU MSP430 Raspberry IOT ARM
    • C #
      • Visual Basic Visual Studio
    • Matlab
    • VLSI
    • PHP-HTML
    • Contribute
  • Downloads
  • Technology

NodeMCU getting Started

Firstly open the Arduino IDE

Go to files and click on the preference in the Arduino IDE

  

copy the below code in the Additional boards Manager

http://arduino.esp8266.com/stable/package_esp8266com_index.json

click OK to close the preference Tab.

 

After completing the above steps , go to Tools and board, and then select board Manager
  

Navigate to esp8266 by esp8266 community and install the software for Arduino.

Once all the above process been completed we are read to program our esp8266 with Arduino IDE.

  

For this example I have used NodeMCU esp8266 and if you are using any other vendor wifi chips or generic wifi module please check with the esp8266 Pin mapping which is very essential to make things works.

The reason why I used D7 pin for this example is , I uploaded the basic blink program that comes with the examples program in the arduino IDE which is connected with 13 pin of arduino. The 13th pin is mapped into D7 pin of NodeMCU.

go to board and select the type of esp8266 you are using. and select the correct COM port to run the program on your esp8266 device.

Silicon Labs usb to uart drivers(CP210x_Windows_Drivers)


void setup() {

  // initialize digital pin 13 as an output.

  pinMode(13, OUTPUT);
}

// the loop function runs over and over again forever
void loop() {
  digitalWrite(13, HIGH);   // turn the LED on (HIGH is the voltage level)
  delay(1000);              // wait for a second
  digitalWrite(13, LOW);    // turn the LED off by making the voltage LOW
  delay(1000);              // wait for a second
}

  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+

Related Posts:

  • ECG MONITORING SYSTEM AD8232 Heart Rate Monitor Hookup Guide Share on TwitterShare on FacebookPin It Introduction The AD8232 is a neat little chip use… Read More
  • HOW TO POST DATA TO GOOGLE SHEETS USING ESP8266 In the past couple years, the ESP8266 platform has flourished dramatically and emerged as one of the most popular hardware tools among electronics h… Read More
  • Interfacing GSM Module with Arduino SINGLE WIRE COMUNICATION  int sensor1=2; int x; int state; int flag=0;  int led1 =5; int reset = 8; int buz =13; boolean s1; vo… Read More
  • MY TEST CODE int sensor1=2; int sensor2=3; int sensor3=4; int x; int y; int z; int state; int flag=0; int led1 =5; int led2 =6; int led3 =7; int reset = 8; int bu… Read More
  • Sound Card ECG With AD8232 Every few years I revisit the idea of building an ECG machine. This time I was very impressed with how easy it is to achieve using the … Read More
Terms and Conditions -
Privacy Policy -

Contact Us

Name

Email *

Message *