स्वचालित वॉशरूम लाइट स्विच

परिचय स्वचालित वॉशरूम लाइट स्विच इस परियोजना में, मैं आपको दिखाऊंगा कि कैसे एक साधारण स्वचालित वॉशरूम लाइट स्विच सर्किट का डिज़ाइन और निर्माण किया जाए, जो वॉशरूम में जाने पर स्वचालित रूप से चालू हो जाएगा और जब आप बाहर निकलेंगे तो इसे बंद कर देंगे। हम अपने वॉशरूम में रोशनी चालू करते हैं … Read more

उन्नत माइक्रोकंट्रोलर-आधारित स्मार्ट सिंचाई प्रणाली

स्मार्ट सिंचाई प्रणाली डिजाइन इंजीनियरिंग नए इनोवेशन के लिए एक बहुत ही नवीन दृष्टिकोण है और मौजूदा समस्याओं के नए समाधान को आकार दे रहा है। डिजाइन इंजीनियरिंग युवा दिमागों को तार्किक रूप से सोचने, और उनके विचारों को प्रस्तुत करने और उन्हें वास्तविक दुनिया में लागू करने का अवसर देता है। डिजाइन इंजीनियरिंग युवा … Read more

ESP8266 स्मार्ट डस्टबिन

स्मार्ट डस्टबिन (SD)Components ESP8266अतिध्वनि संवेदकसर्वो मोटरडस्टबिन (स्मार्ट डस्टबिन) और इंटरनेट कनेक्शन चरण 1: स्मार्ट डस्टबिन तैयार करनाडस्टबिन खोलें और एक सर्कल थर्मो शेट बनाएं और दो भागों में काटें जो एक दरवाजा खोलने के रूप में है जो इमदादी मोटर द्वारा एक स्ट्रिंग के माध्यम से नियंत्रित कर सकता है जो थर्मो शेट से जुड़ा … Read more

Strings in C language

Strings in ‘c’ are defined as a series of characters. The difference between a string and a string is that the string ends with a special character “\0”. Strings in c declaration: declaring a string is as simple as declaring a dimensional array. Below is the basic syntax for declaring a string. In the syntax … Read more

Introduction to C language

C language is a procedural programming language. It was originally developed by Dennis Ritchie in 1972. It was developed primarily as a system programming language for writing an operating system. The main features of the C language include low access to memory, a simple set of keywords and clean style, these features make the C … Read more

Write a C program to find that the accepted number is Negative, or Positive or Zero.

#include<stdio.h> int main() { int no; printf(“\n Enter any number : “); scanf(“%d”,&no); if(no==0) { printf(“\n Entered Number is Zero”); } else if(no>0) { printf(“\n Entered Number is Positive”); } else { printf(“\n Entered Number is Negative”); } return 0; }

Write a C program to find out distance travelled by the equation d = ut + at^2

#include<stdio.h> int main() {     float u,a,d;     int t;          printf(“\nEnter the value of a : “);     scanf(“%f”,&a);     printf(“\nEnter the value of u : “);     scanf(“%f”,&u);     printf(“\nEnter the value of t : “);     scanf(“%d”,&t);     d = (u … Read more