Top Posts
Tutorial: Arduino Trigonometric Functions
Tutorial: Arduino Strings
Tutorial: Arduino Pulse Width Modulation (PWM)
Tutorial: Arduino Functions
Tutorial: Arduino Inter-Integrated Circuit (I2C)
Tutorial: Arduino Variables and Constants
Tutorial: Arduino Serial Peripheral Interface (SPI)
Tutorial: Arduino Loops
Tutorial: Arduino Tone Library
Tutorial: Arduino Control Statements
Mikro blog
Advertise here
  • Arduino
  • ESP8266
  • MIcro:bit
  • Raspberry PI
  • STM32
  • Arduino Basics

    Arduino for beginners – functions

    by shedboy71 9th August 2016

    When we create a function, it must be given a name. The naming convention for functions is the same as for variables: •The function name can be made up of …

    Read more
  • Arduino Basics

    Arduino for beginners – setup and loop

    by shedboy71 9th August 2016

    The most basic Arduino sketch consists of two functions called setup() and loop(). The Arduino IDE once installed has a basic example that shows this.  Open the Arduino IDE and select …

    Read more
  • Arduino Basics

    Arduino for beginners – if / else statement

    by shedboy71 9th August 2016

    An if statement can be followed by an optional else statement, which executes when the expression is false. Syntax The syntax of an if…else statement is [codesyntax lang=”cpp”] if(expression) { …

    Read more
  • Arduino Basics

    Arduino for beginners : if statement

    by shedboy71 8th August 2016

    if, which is used in conjunction with a comparison operator, tests whether a certain condition has been reached, such as an input being above a certain number. If the expression …

    Read more
  • Arduino Basics

    Arduino for beginners : do while loop

    by shedboy71 8th August 2016

    The do loop works in the same manner as the while loop, with one difference in that the condition is tested at the end of the loop, so the do …

    Read more
  • Arduino Basics

    Arduino for beginners : while loop

    by shedboy71 8th August 2016

    while loops will loop continuously, and infinitely, until the expression inside the parenthesis, () becomes false. Something must change the tested variable, or the while loop will never exit. This …

    Read more
  • Arduino Basics

    Arduino for beginners : for loops

    by shedboy71 8th August 2016

    Arduino for beginners : for loops The for statement is used to repeat a block of statements enclosed in curly braces. An increment counter is usually used to increment and …

    Read more
  • MicroPython Examples

    Micro:bit image examples

    by shedboy71 26th July 2016

    Here we show you how to create a custom image on the led matrix, we use the Mu editor [codesyntax lang=”python”] from microbit import * im = Image(‘99999:90009:90009:90009:99999:’) display.show(im) [/codesyntax] …

    Read more
  • Arduino Sensors

    Arduino MCP9808 digital temperature sensor

    by shedboy71 8th July 2016

    The MCP9808 digital temperature sensor converts temperatures between -20°C and +100°C to a digital word with ±0.5°C (max.) accuracy. The MCP9808 comes with user-programmable registers that provide flexibility for temperature …

    Read more
  • Arduino Sensors

    Arduino HDC1008 sensor example

    by shedboy71 8th July 2016

    The HDC1000 is a digital humidity sensor with integrated temperature sensor that provides excellent measurement accuracy at very low power. The device measures humidity based on a novel capacitive sensor. …

    Read more
  • Arduino Sensors

    Arduino BME280 sensor example

    by shedboy71 8th July 2016

    The BME280 is a humidity sensor features an extremely fast response time which supports performance requirements for emerging applications such as context awareness, and high accuracy over a wide temperature range. …

    Read more
  • Arduino Sensors

    Arduino and AM2302 humidity and temperature sensor

    by shedboy71 5th July 2016

    In this example we use the DHT22 (or AM2302) humidity/temperature sensor and the Arduino UNO board to read data and print it out to the serial monitor. The DHT22 is better …

    Read more
  • Arduino Sensors

    Arduino and SHT21 humidity and temperature sensor

    by shedboy71 5th July 2016

    Description The digital SHT2x humidity sensor series is used in high volumes in a wide variety of applications and has today become the de facto industry standard. The SHT2x series …

    Read more
  • Arduino Sensors

    Arduino and ML8511 UV light sensor

    by shedboy71 5th July 2016

    Description The ML8511 measures the amount of ultra violet rayses contained in sunlight, and it is used for the equipment which displays the suntan by a ultra violet rays, the …

    Read more
Newer Posts
Older Posts

Products

Arduino Due 2012 R3 ARM Version Main Control Board
CPLD MAX II EPM240 Minimum System Core Board Development Board
Digispark Kickstarter ATTINY85 General Micro USB Development Board
Basic Starter Kit Set For Arduino UNO R3 Microcontroller
ATMEGA328 Pro Mini 328 Mini Compatible Nano for Arduino
Arduino Sensor Shield V5.0 sensor expansion board

Latest

  • Tutorial: Arduino Trigonometric Functions
  • Tutorial: Arduino Strings
  • Tutorial: Arduino Pulse Width Modulation (PWM)
  • Tutorial: Arduino Functions
  • Tutorial: Arduino Inter-Integrated Circuit (I2C)
  • Tutorial: Arduino Variables and Constants
  • Tutorial: Arduino Serial Peripheral Interface (SPI)
  • Tutorial: Arduino Loops

Donation Options

What its all for

PayPal


NOWPayments

Crypto donation button by NOWPayments

Kofi



Librepay



Patreon

Become a Patron!

Buy me a coffee

Categories

Pages

  • Arduino for beginners
  • Arduino Sensors

@2024 onwards - All Right Reserved.


Back To Top
Mikro blog
  • Arduino
  • ESP8266
  • MIcro:bit
  • Raspberry PI
  • STM32