eigenarduino
Lessen voor gevorderden in pdf 2018 2019 met extra projecten Circuit design Veel schakelingen Meerdere lessen
Simon says
https://elektronicavoorjou.nl/arduino-project-simon-says/ Vanuit: https://elektronicavoorjou.nl/arduino-info/arduino-projecten/
Buzzer
#include <Ultrasonic.h> Ultrasonic ultrasonic(6,5);// 6 trig , 5 echo const int buzzer = 7; // pin buzzer void setup(){ pinMode(buzzer,OUTPUT); } void loop(){ int dist = ultrasonic.Ranging(CM); if (dist <…
Laser
int laserPin = 10; void setup () { pinMode(laserPin, OUTPUT); } void loop () { digitalWrite(laserPin, HIGH); delay(100); digitalWrite(laserPin, LOW); delay(100); }
Meerkleurige LCD
/*Interfacing RGB LED with Arduino * Author: Electrofun * For more information visit us: www.electrofun.co.in * Video explanation at: https://www.youtube.com/playlist?list=PLnDLZy2UodwHt3Z8bD6V8lsegmc2yGuMP */ //Defining variable and the GPIO pin on Arduino int…
Stopwatch
/* Bas on Tech – Arduino tutorial https://arduino-lessen.nl PIN AANSLUITINGEN LCD SDA is serial data SCL is serial clock GND –> GND (wit) VCC –> 5V (grijs) SDA –> A4…
Ultrasoon ontvanger
//ultrasoon sensor /* * Bas on Tech – Ultrasoon sensor * Deze les is onderdeel van de lessen op https://arduino-lessen.nl * * (c) Copyright 2018 – Bas van Dijk /…
Eenvoudig looplicht
//Eenvoudig looplicht int ledler[10]={2, 3, 4, 5, 6,}; void setup(){ for(int i=2; i<7; i++){ pinMode(i, OUTPUT); } } void loop(){ for(int i=2; i<7; i++){ digitalWrite(i, HIGH); delay(1000); digitalWrite(i, LOW); delay(500);…
Infra red ontvanger
// Importeer de IR-remote bibliotheek #include int IrReceiverPin = 12; // stel de variable “IrReceiverPin” in op pin 12 IRrecv irrecv(IrReceiverPin); // maak een nieuwe instantie van “irrecv” en sla…
