Skip to content

Instantly share code, notes, and snippets.

View preethamslab's full-sized avatar

PreethamUmarani preethamslab

  • Gupshup, ex-BlynkSpeak, , Ex-IBM
  • Mumbai
View GitHub Profile
@preethamslab
preethamslab / code
Created September 22, 2021 11:25
XLR8 controller code
#include <Ultrasonic.h>
#include <Servo.h>
Servo armservo;
Servo gripperservo;
Ultrasonic ultrasonic(10,11);
int motor_pin1 = 2;
int motor_pin2 = 3;
int motor_pin3 = 4;
int motor_pin4 = 5;
int motor_pin5 = 6;
@preethamslab
preethamslab / firebase.json
Created September 7, 2021 15:24
firebase.json after
{
"hosting": [
{
"public": "build",
"target": "prod",
"ignore": ["firebase.json", "**/.*", "**/node_modules/**"],
"rewrites": [
{
"source": "**",
"destination": "/index.html"
@preethamslab
preethamslab / firebase.json
Created September 7, 2021 15:24
firebase.json at the start
{
"hosting": {
"public": "build",
"target": "prod",
"ignore": ["firebase.json", "**/.*", "**/node_modules/**"],
"rewrites": [
{
"source": "**",
"destination": "/index.html"
}