Posts

How to Crack JEE

Nothing is hard to humans Cracking jee is not to hard if you are well prepared then you will feel the exam easy only thing you have to do is just focus on your studies and practice a lot
Deleting code:- void setup(){ } void(*resetFunc) (void) = 0;  void loop() {    resetFunc();   delay(1000);  }
Image
Ardiuno uno programing by mobile 1. Download ardiuno ide app Tap on 3 dots Tap on sketch Tap on example Tap on basics Tap on blink      Code:-       /*   Blink   Turns on an LED on for one second, then off for one second, repeatedly.   Most Arduinos have an on-board LED you can control. On the UNO, MEGA and ZERO   it is attached to digital pin 13, on MKR1000 on pin 6. LED_BUILTIN is set to   the correct LED pin independent of which board is used.   If you want to know what pin the on-board LED is connected to on your Arduino model, check   the Technical Specs of your board  at https://www.arduino.cc/en/Main/Products     This example code is in the public domain.   modified 8 May 2014   by Scott Fitzgerald     modified 2 Sep 2016   by Arturo Guadalupi     modified 8 Sep 2016   by Colby Newman */ // the setup funct...

Man with science and tech || How to make bletooth home automation || by *Manohar Gella*

Image
Arduino  is an  open-source hardware  and  software company, project and user community that designs and manufactures  single-board microcontrollers  and  microcontroller  kits for building digital devices and interactive objects that can sense and control both physically and digitally. Its products are licensed under the  GNU Lesser General Public License  (LGPL) or the  GNU General Public License  (GPL), [1]  permitting the manufacture of Arduino boards and software distribution by anyone. Arduino boards are available commercially in preassembled form or as  do-it-yourself (DIY) kits. Arduino   Arduino Uno  SMD R3 Developer arduino.cc Manufacturer Many Type Single-board microcontroller Operating system None CPU Atmel AVR  (8-bit), ARM Cortex-M0+  (32-bit), ARM Cortex-M3  (32-bit), Intel Quark  ( x86 ) (32-bit) Memory SRAM Storage Flash ,  EEPROM Website www .arduino ...
Image
Home automation bluetooth code void setup() { Serial.begin(9600); pinMode(8, OUTPUT); pinMode(9, OUTPUT); pinMode(10, OUTPUT); pinMode(11, OUTPUT); pinMode(12, OUTPUT); pinMode(13, OUTPUT); } void loop() { unsigned char x; digitalWrite(12, 0);delay(1); digitalWrite(11, 0);delay(1); digitalWrite(10, 0);delay(1); digitalWrite( 9, 0);delay(1); while(1) { x=Serial.read(); if(x=='1') {digitalWrite( 9, 1);delay(100);} if(x=='A') {digitalWrite( 9, 0);delay(100);} if(x=='2') {digitalWrite(10, 1);delay(100);} if(x=='B') {digitalWrite(10, 0);delay(100);} if(x=='3') {digitalWrite(11, 1);delay(100);} if(x=='C') {digitalWrite(11, 0);delay(100);} if(...