serial

Arduino Basic Wifi Project using ESP8266 wifi module

Arduino Basic Wifi Project using ESP8266 wifi module

Overview ESP8266 is a highly integrated chip designed for the needs of a new connected world. It offers a complete and self-contained Wi-Fi networking solution, allowing it to either host the application or to offload all Wi-Fi networking functions from another application processor.   ESP8266 has powerful on-board processing and storage capabilities that allow it […]

Arduino Basic Wifi Project using ESP8266 wifi module Continue Reading

Digital Read Serial Circuit

Digital Read Serial using Arduino

This example shows you how to monitor the state of a switch by establishing serial communication between your Arduino and your computer over USB. Hardware Required Arduino Board A momentary switch, button, or toggle switch 10k ohm resistor breadboard hook-up wire Circuit image developed using Fritzing. For more circuit examples, see the Fritzing project page Connect three wires to

Digital Read Serial using Arduino Continue Reading

Switch Statement used with serial input using Arduino

Switch Statement used with serial input using Arduino

An if statement allows you to choose between two discrete options, TRUE or FALSE. When there are more than two options, you can use multiple if statements, or you can use the switch statement. Switch allows you to choose between several discrete options. This tutorial shows you how to use switch to turn on one of several

Switch Statement used with serial input using Arduino Continue Reading

Input Pullup Serial using Arduino

Input Pullup Serial using Arduino

This example demonstrates the use of INPUT_PULLUP with pinMode(). It monitors the state of a switch by establishingserial communication between your Arduino and your computer over USB. Additionally, when the input is HIGH, the onboard LED attached to pin 13 will turn on; when LOW, the LED will turn off. Circuit image developed using Fritzing. For more

Input Pullup Serial using Arduino Continue Reading

Scroll to Top