Thursday, August 27, 2020

The Arduino Platform and C Programming

 

  The Arduino Platform and C Programming


Week 1 Assignment :








Week 2 Assignment :

Write a program in C that computes and prints out the first six digits in the Fibonacci sequence. Look up the definition of the Fibonacci sequence if you don't know it. The first two numbers in the sequence are 0 and 1, but your program should compute the next four digits. Make sure your program compiles using gcc.

Then, save a text version of your program. Copy and paste the text of your program in the box here. 

--------------------------------------------------------------------------------------------------------------------------------------------

/* This program computes and prints the first 6 fibonacci numbers.*/

#include<stdio.h>


int fib(int n);


int main(){

  int n = 6;

  printf("Then first %d fibonacci numbers are: \n", n);

  for(int i=1; i<=6; i++){

    int fno = fib(i);

    printf("%d\n", fno);

  }

  return 0;

}


int fib(int n){

  int fno = 0;

  if(n==1){/*The first fibonacci number is 0.*/

    fno = 0;

  }

  else if(n==2){/*The second fibonacci number is 1.*/

    fno = 1;

  }

  else{/*Recursive definition of fibonacci series.*/

    fno = fib(n-1)+fib(n-2);

  }

  return fno;

}

--------------------------------------------------------------------------------------------------------------------------------------------

Week 3 Assignment :



Week 4 Assignment :

PROMPT

Write a program that allows the user to control the LED connected to pin 13 of the Arduino. When the program is started, the LED should be off. The user should open the serial monitor to communicate with the Arduino. If the user sends the character '1' through the serial monitor then the LED should turn on. If the user sends the character '0' through the serial monitor then the LED should turn off.

If you do not have an Arduino, you can use the web-based Arduino simulator at www.tinkercad.com. You will need to create an account for free. There are instructional videos on that website that will teach you how to use the simulator.



void setup() {

pinMode(13, OUTPUT);

Serial.begin(9600);

}

void loop() {

if (Serial.available() > 0) {

int i=Serial.read();

if(i==49){

digitalWrite(13, HIGH);

}

else if(i==48){

digitalWrite(13, LOW);

}

}

}

Monday, June 1, 2020

Digital-Wellness and Cyber Security


                " Hey This is Premium   Course We have Bought here for all of you "

                          Digital wellness refers to the state of one's physical and mental health in the Digital Age. More specifically, digital wellness refers to preventative measures aimed at regulating and improving the healthy use of technology

Skill India is the flagship scheme of the Ministry of Skill Development & Entrepreneurship (MSDE). The objective of this Skill Certification Scheme is to enable a large number of Indian youth to take up industry-relevant skill training that will help them in securing a better livelihood. Individuals with prior learning experience or skills will also be assessed and certified under Recognition of Prior Learning (RPL).

Digital Wellness and Cyber Security Course has been designed to provide the knowledge of handling the digital Devices in a safe way to the people working (willing to Work) in Information Technology Industry. This course will be conducted by CSC (Common Service Center) Govt Of India. The certification will be awarded by CSC in association with Intel Corporation.

Procedure of Enrollment in this Skill Certification Program:

1.Participant has to register his/her details on form

2. On payment of registration fee we  will provide the User-ID and Password to the participant using which the participant will login to the portal.


4. On the portal the participant will watch the video tutorials (Hindi or English) to learn about Digital Wellness and Cyber Security.


5. Participant will have to give Online Exam and will get the Digital Certificate on the spot on his portal-login.


Benefit of Digital Wellness & Cyber Security Skill Certification Program:

The Digital Wellness and Cyber Security Certification course will make the participant confident in handling the digital device in more secured way. Cyber Security is the demand of the day, most of the people working in Information Technology Industry are not aware of the concepts of making the digital devices (Laptops, Mobile phones, Tablets etc) secured from the cyber attack. Due to Cyber attacks and malfunctioning of the devices more and more data is being stolen by cyber hackers every year. CSC has taken the responsibility of spreading the awareness about cyber security and to educate the people about it.


Student Login Link :- http://13.126.173.165/skills/lms/login/index.php

Registration Link :-  https://forms.gle/SArTNQgSCZkgmQSo6






Thursday, May 21, 2020

Google Analytics

 

Google Analytics is a web analytics service offered by Google that tracks and reports website traffic, currently as a platform inside the Google Marketing Platform brand.Google launched the service in November 2005 after acquiring Urchin.

As of 2019, Google Analytics is the most widely used web analytics service on the web.Google Analytics provides an SDK that allows gathering usage data from iOS and Android app, known as Google Analytics for Mobile Apps. Google Analytics can be blocked by browsers, browser extensions, and firewalls and other means.



Link :- https://analytics.google.com/analytics/academy/

Sample Certificate 

Arduino

Arduino


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.

Arduino board designs use a variety of microprocessors and controllers. The boards are equipped with sets of digital and analog input/output (I/O) pins that may be interfaced to various expansion boards ('shields') or breadboards (For prototyping) and other circuits. The boards feature serial communications interfaces, including Universal Serial Bus (USB) on some models, which are also used for loading programs from personal computers. The microcontrollers can be programmed using C and C++ programming languages. In addition to using traditional compiler toolchains, the Arduino project provides an integrated development environment (IDE) based on the Processing language project.


PROMOCODE:-POSTCOVID



Link :- https://www.udemy.com/course/introduction-to-scratch4arduino/?couponCode=POSTCOVID

Tuesday, May 19, 2020

Project Management

PROJECT MANAGEMENT

Project management is the practice of leading the work of a team to achieve goals and meet success criteria at the specified time. The primary challenge of project management is to achieve all of the project goals within the given constraints
The objective of project management is to produce a complete project which complies with the client's objectives. In many cases the objective of project management is also to shape or reform the client's brief to feasibly address the client's objectives. 

Once the client's objectives are clearly established they should influence all decisions made by other people involved in the project – for example project managers, designers, contractors and sub-contractors. Ill-defined or too tightly prescribed project management objectives are detrimental to decision making.
Sample Certificate



MATLAB ON RAMP

MATLAB ON RAMP
⚠️ Matlab courses are only accessible on pc/desktop ⚠️




Learn the essentials of MATLAB
® through this free, two-hour introductory tutorial on commonly used features and workflows.
MATLAB® combines a desktop environment tuned for iterative analysis and design processes with a programming language that expresses matrix and array mathematics directly. It includes the Live Editor for creating scripts that combine code, output, and formatted text in an executable notebook.