Skip to content

Instantly share code, notes, and snippets.

View AkbarAlam's full-sized avatar

Akbar moshur Alam AkbarAlam

View GitHub Profile
@AkbarAlam
AkbarAlam / FieldRobot_withRaspberryPi.c
Created August 22, 2016 13:05
field robot C program using wiringPi lib
/*
Project : Field Robot
task: counting plants with laser sensor and auto nevigation
Group: FR6
prepared by : AKBAR MOSHUR ALAM
*/
#include <stdio.h>
#include <stdlib.h>
@AkbarAlam
AkbarAlam / plantCounting.c
Created August 22, 2016 13:09
plant counting using ultrasonic sensor with bcm2835 lib
#include <stdio.h>
#include <bcm2835.h>
// defining the connections
#define ultra_LT RPI_V2_GPIO_P1_16
#define ultra_LE RPI_V2_GPIO_P1_18
void setup()