Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@RobolinkTeknoloji
RobolinkTeknoloji / Arduino-Joystick-Shild-1.ino
Last active October 18, 2020 13:10
Arduino Joystick Shield Buton ve Joystick Kontrol
#define joyx A0
#define joyy A1
#define buton_a 2
#define buton_b 3
#define buton_c 4
#define buton_d 5
#define buton_e 6
#define buton_f 7
#define joy_buton 8
#include <dmoto.h>
dmoto cizgi;
void setup() {
Serial.begin(9600);
cizgi.pinSet();
}
@RobolinkTeknoloji
RobolinkTeknoloji / HC-SR04 ile Park Sensörü Yapımı.ino
Last active September 19, 2019 07:32
HC-SR04 ile Park Sensörü Yapımı
#define trig_Pin 8
#define echo_Pin 9
#define buzzer_Pin 10
long mesafe = 0;
long sure = 0;
int gosterge = 0;
void setup() {
for (int i = 2; i&lt; 7; i++)
{
pinMode(i, OUTPUT);