Ask Sawal

Discussion Forum
Notification Icon1
Write Answer Icon
Add Question Icon

Rahi Raani




Posted Questions



Wait...

Posted Answers



Answer


Today, we hear from seven freelance graphic designers in our community as they give us a glimpse into what a typical workday looks like for them. Let's go! Laura Prpich Designer | Instructor, Vancouver Island. Penchant for


Answer is posted for the following question.

What is it like to be a freelance graphic designer?

Answer


Depositing Cash in an Online Bank — Depositing cash in your online bank via wire transfer may result in a brief hold time before the money


Answer is posted for the following question.

How to deposit money in bank?

Answer


Airtel 24 hour customer care number toll free number is 1800-598-1317-6722-1395-8689

Note: The above number is provided by individual. So we dont gurantee the accuracy of the number. So before using the above number do your own research or enquiry.


Answer is posted for the following question.

What is Airtel 24 hour customer care number?

Answer


Harry's Gourmet Pizza

Address: 263 Brunker Rd, Adamstown NSW 2289, Australia


Answer is posted for the following question.

Which is the best gluten free pizza in Newcastle, Australia?

Answer


By A Boretti · 2020 · Cited by 2 — UBI was already used 80 years ago on a routine basis to treat numerous diseases. These diseases included asthma, septicemia, tuberculosis,


Answer is posted for the following question.

What is ubi treatment used for?

Answer


Though asbestosis and mesothelioma are both asbestos-related diseases, they are not the same. The primary difference is that asbestosis is not


Answer is posted for the following question.

What is the difference between asbestosis and mesothelioma?

Answer


Power Rangers SPD is the thirteenth season of Power Rangers, based upon the Super Sentai series Tokusou Sentai Dekaranger The show began airing on ABC


Answer is posted for the following question.

Why did power rangers spd end?

Answer


The iOS 11 Phone and Contacts apps look almost the same as The X's two speakers have balanced loudness with crisp and clear sound quality. Don't get too excited though - it can browse and work with files from Clips also supports easy sharing, so your friends could see your creations in an instant


Answer is posted for the following question.

How does iphone x speakers work?

Answer


The 'Card to Card Transfer' option on SBI ATMs can be availed to send cash from one SBI debit card to the other. Up to ₹ 40,000 can be


Answer is posted for the following question.

What is sbi debit by transfer?

Answer


1
/*
2
 * HTTP Client POST Request
3
 * Copyright (c) 2018, circuits4you.com
4
 * All rights reserved.
5
 * https://circuits4you.com 
6
 * Connects to WiFi HotSpot. */
7
8
#include 
9
#include  
10
#include 
11
#include 
12
13
/* Set these to your desired credentials. */
14
const char *ssid = "circuits4you.com";  //ENTER YOUR WIFI SETTINGS
15
const char *password = "yourPassword";
16
17
//Web/Server address to read/write from 
18
const char *host = "192.168.43.128";   //https://circuits4you.com website or IP address of server
19
20
//=======================================================================
21
//                    Power on setup
22
//=======================================================================
23
24
void setup() {
25
  delay(1000);
26
  Serial.begin(115200);
27
  WiFi.mode(WIFI_OFF);        //Prevents reconnection issue (taking too long to connect)
28
  delay(1000);
29
  WiFi.mode(WIFI_STA);        //This line hides the viewing of ESP as wifi hotspot
30
  
31
  WiFi.begin(ssid, password);     //Connect to your WiFi router
32
  Serial.println("");
33
34
  Serial.print("Connecting");
35
  // Wait for connection
36
  while (WiFi.status() != WL_CONNECTED) {
37
    delay(500);
38
    Serial.print(".");
39
  }
40
41
  //If connection successful show IP address in serial monitor
42
  Serial.println("");
43
  Serial.print("Connected to ");
44
  Serial.println(ssid);
45
  Serial.print("IP address: ");
46
  Serial.println(WiFi.localIP());  //IP address assigned to your ESP
47
}
48
49
//=======================================================================
50
//                    Main Program Loop
51
//=======================================================================
52
void loop() {
53
  HTTPClient http;    //Declare object of class HTTPClient
54
55
  String ADCData, station, postData;
56
  int adcvalue=analogRead(A0);  //Read Analog value of LDR
57
  ADCData = String(adcvalue);   //String to interger conversion
58
  station = "A";
59
60
  //Post Data
61
  postData = "status=" + ADCData + "&station=" + station ;
62
  
63
  http.begin("http://192.168.43.128/c4yforum/postdemo.php");              //Specify request destination
64
  http.addHeader("Content-Type", "application/x-www-form-urlencoded");    //Specify content-type header
65
66
  int httpCode = http.POST(postData);   //Send the request
67
  String payload = http.getString();    //Get the response payload
68
69
  Serial.println(httpCode);   //Print HTTP return code
70
  Serial.println(payload);    //Print request response payload
71
72
  http.end();  //Close connection
73
  
74
  delay(5000);  //Post Data at every 5 seconds
75
}
76
//=======================================================================

Answer is posted for the following question.

How to post data with esp8266 (C++ Programming Language)


Wait...