Saturday, October 23, 2021

tech and you

Tech and you is a youtube channel 

The ceo of tech and you is Dhurgeshwaran

Thursday, October 14, 2021

Control DC Motor with use Blynk App

 Code ;

      Arduino IDE - File - Example - Blynk - wifi- ESP standlone 


Circuit diagram ;

    



Thursday, July 29, 2021

how to use ldr in Arduino

How to use LDR with relay module in Arduino :




Full video link with description:

                







Code :


void setup() {

  pinMode(4,INPUT);
  pinMode(3,OUTPUT);
  digitalWrite(4,HIGH);
  
  // put your setup code here, to run once:

}

void loop() {
   
   if (digitalRead(4) == HIGH){
    digitalWrite(3,LOW);
   }
                     
   else{
    digitalWrite(3,HIGH);
   
  }}
  // put your main code here, to run repeatedly:







Thursday, July 22, 2021

How to make Robot Dog








Wanted Things:

    1.Arduino

    2.carboard

    3.Servo motors

    4.Jumper Wire

    5.Battery



Video Link: YouTube (Robot Dog)







circuit Diagram:






Code:

#include<Servo.h>

Servo rs;

Servo ls;

int i = 1;


void setup() {

  rs.attach(9);

  ls.attach(8);

  pinMode(7, INPUT);

  // put your setup code here, to run once:


}


void loop() {

  rs.write(90);

  ls.write(110);

  delay(3000);


    //Servo walk

  while(digitalRead(7) == HIGH){

    rs.write(128);

    delay(200);

    rs.write(96);

    delay(100);

    ls.write(65);

    delay(100);

    ls.write(100);

    delay(100);



  }


}



Thursday, February 11, 2021

7 E-Commerce Tools Every Small Business Needs
  • Choosing an E-commerce Platform. ...
  • Digital Payment Processing Systems. ...
  • Email Marketing Platforms and Services. ...
  • Advanced Analytics and Tracking. ...
  • Shipping Service Integrations. ...
  • Social Media Management Solutions. ...
  • Customer Relationship Management Software.






What is Ecommerce?

Ecommerce, also known as electronic commerce or internet commerce, refers to the buying and selling of goods or services using the internet, and the transfer of money and data to execute these transactions. Ecommerce is often used to refer to the sale of physical products online, but it can also describe any kind of commercial transaction that is facilitated through the internet.

Whereas e-business refers to all aspects of operating an online business, ecommerce refers specifically to the transaction of goods and services.

The history of ecommerce begins with the first ever online sale: on the August 11, 1994 a man sold a CD by the band Sting to his friend through his website NetMarket, an American retail platform. This is the first example of a consumer purchasing a product from a business through the World Wide Web—or “ecommerce” as we commonly know it today.

Since then, ecommerce has evolved to make products easier to discover and purchase through online retailers and marketplaces.  Independent freelancers, small businesses, and large corporations have all benefited from ecommerce, which enables them to sell their goods and services at a scale that was not possible with traditional offline retail.

Global retail ecommerce sales are projected to reach $27 trillion by 2020.

Types of Ecommerce Models

There are four main types of ecommerce models that can describe almost every transaction that takes place between consumers and businesses.

1. Business to Consumer (B2C):
When a business sells a good or service to an individual consumer (e.g. You buy a pair of shoes from an online retailer).

2. Business to Business (B2B):
When a business sells a good or service to another business (e.g. A business sells software-as-a-service for other businesses to use)  

3. Consumer to Consumer (C2C):
When a consumer sells a good or service to another consumer (e.g. You sell your old furniture on eBay to another consumer).

4. Consumer to Business (C2B):
When a consumer sells their own products or services to a business or organization (e.g. An influencer offers exposure to their online audience in exchange for a fee, or a photographer licenses their photo for a business to use).

Examples of Ecommerce
Ecommerce can take on a variety of forms involving different transactional relationships between businesses and consumers, as well as different objects being exchanged as part of these transactions.

1. Retail:
The sale of a product by a business directly to a customer without any intermediary.

2. Wholesale:
The sale of products in bulk, often to a retailer that then sells them directly to consumers.

3. Dropshipping:
The sale of a product, which is manufactured and shipped to the consumer by a third party.

4. Crowdfunding:
The collection of money from consumers in advance of a product being available in order to raise the startup capital necessary to bring it to market.

5. Subscription:
The automatic recurring purchase of a product or service on a regular basis until the subscriber chooses to cancel.

6. Physical products:
Any tangible good that requires inventory to be replenished and orders to be physically shipped to customers as sales are made.

7. Digital products:
Downloadable digital goods, templates, and courses, or media that must be purchased for consumption or licensed for use.

8. Services:
A skill or set of skills provided in exchange for compensation. The service provider’s time can be purchased for a fee.

Four Traditional Types of Ecommerce Business Models
  • B2C – Business to consumerB2C businesses sell to their end-user. ...
  • B2B – Business to business. In a B2B business model, a business sells its product or service to another business. ...
  • C2B – Consumer to business. ...
  • C2C – Consumer to consumer.



What is e-commerceExamples

  • Retail: The sale of products directly to a consumer without an intermediary.
  • Dropshipping: The sale of products that are manufactured and shipped to consumers via a third party.
  • Digital products: Downloadable items like templates, courses, e-books, software, or media that must be purchased for use.



Top 10 popular ecommerce sites Indians like to shop at

  • Amazon India.
  • Flipkart.
  • Snapdeal.
  • Alibaba.
  • Ebay India.
  • Jabong.
  • Shopclues.
  • Amazon.






..........................Dhurgesh.......................