Are you interested in staying updated with the latest stock market news and trends? Look no further! Join the NISTOCK Telegram channel today to get all the insightful information you need to make informed investment decisions. NISTOCK provides valuable updates on stock prices, market analysis, and investment tips to help you navigate the ever-changing world of finance
Who is NISTOCK? NISTOCK is a reliable source of stock market information curated by experts in the field. With a team of dedicated analysts and researchers, NISTOCK ensures that you receive accurate and up-to-date data to enhance your trading experience. Whether you are a seasoned investor or just starting out, NISTOCK caters to all levels of expertise.
What is NISTOCK? NISTOCK is a Telegram channel dedicated to providing its members with timely and relevant stock market updates. From discussing market trends to sharing investment strategies, NISTOCK covers a wide range of topics to help you make the most of your investments. By joining NISTOCK, you gain access to a community of like-minded individuals who share a passion for finance and trading.
Don't miss out on the opportunity to elevate your investment game with NISTOCK. Join us today to become part of a thriving community of investors and traders. Stay ahead of the curve with NISTOCK's comprehensive market insights and take your investment portfolio to new heights. For all your stock market needs, NISTOCK is the go-to channel for valuable information and expert advice.
02 Feb, 19:32
02 Feb, 16:52
02 Feb, 15:37
02 Feb, 14:06
02 Feb, 13:33
29 Jan, 22:09
29 Jan, 18:18
29 Jan, 18:15
29 Jan, 17:58
29 Jan, 17:43
29 Jan, 14:56
29 Jan, 14:52
29 Jan, 14:36
27 Jan, 11:39
27 Jan, 11:37
27 Jan, 11:24
27 Jan, 10:45
27 Jan, 01:13
27 Jan, 01:10
27 Jan, 00:37
27 Jan, 00:31
27 Jan, 00:26
12 Jan, 17:20
12 Jan, 17:18
12 Jan, 17:08
12 Jan, 16:17
12 Jan, 15:40
12 Jan, 13:45
09 Jan, 13:03
09 Jan, 12:55
09 Jan, 11:41
09 Jan, 11:09
09 Jan, 10:29
09 Jan, 08:58
09 Jan, 08:38
09 Jan, 08:11
09 Jan, 07:50
09 Jan, 06:54
09 Jan, 06:51
09 Jan, 06:41
09 Jan, 06:17
08 Jan, 09:42
08 Jan, 09:05
08 Jan, 09:05
08 Jan, 08:39
08 Jan, 07:30
08 Jan, 07:16
08 Jan, 06:18
08 Jan, 06:15
08 Jan, 05:36
08 Jan, 05:35
08 Jan, 05:25
08 Jan, 05:17
04 Jan, 12:56
04 Jan, 12:29
04 Jan, 11:58
04 Jan, 09:41
04 Jan, 09:18
04 Jan, 09:05
04 Jan, 08:34
03 Jan, 11:08
03 Jan, 10:25
03 Jan, 10:13
03 Jan, 09:49
03 Jan, 07:29
03 Jan, 06:49
03 Jan, 04:50
01 Jan, 14:07
01 Jan, 14:00
01 Jan, 13:47
01 Jan, 13:39
01 Jan, 13:34
01 Jan, 12:55
01 Jan, 12:19
01 Jan, 12:01
01 Jan, 11:59
01 Jan, 09:23
24 Dec, 07:40
24 Dec, 05:27
24 Dec, 05:19
24 Dec, 01:54
24 Dec, 01:23
03 Dec, 14:06
03 Dec, 13:35
03 Dec, 13:23
03 Dec, 12:21
03 Dec, 12:16
03 Dec, 10:57
03 Dec, 10:46
03 Dec, 10:33
03 Dec, 10:17
03 Dec, 10:10
03 Dec, 10:07
03 Dec, 03:24
28 Nov, 00:10
27 Nov, 23:23
27 Nov, 22:55
27 Nov, 22:42
27 Nov, 22:12
27 Nov, 21:46
25 Nov, 09:13
25 Nov, 09:05
25 Nov, 08:49
25 Nov, 08:28
25 Nov, 08:15
25 Nov, 01:17
25 Nov, 01:00
25 Nov, 00:51
25 Nov, 00:42
25 Nov, 00:04
24 Nov, 02:31
24 Nov, 02:10
24 Nov, 02:09
24 Nov, 02:08
24 Nov, 02:02
24 Nov, 00:44
24 Nov, 00:22
23 Nov, 23:05
23 Nov, 23:03
23 Nov, 23:03
18 Nov, 20:43
18 Nov, 20:04
18 Nov, 19:45
18 Nov, 19:42
18 Nov, 19:41
18 Nov, 19:13
18 Nov, 19:06
18 Nov, 18:52
18 Nov, 18:03
18 Nov, 17:33
18 Nov, 17:20
13 Nov, 04:24
13 Nov, 04:22
13 Nov, 04:19
13 Nov, 04:18
13 Nov, 04:17
13 Nov, 04:15
13 Nov, 03:37
11 Nov, 20:17
11 Nov, 20:15
11 Nov, 20:01
11 Nov, 18:37
11 Nov, 17:25
11 Nov, 15:04
09 Nov, 03:29
09 Nov, 03:10
08 Nov, 20:42
08 Nov, 18:54
08 Nov, 18:46
08 Nov, 18:31
31 Oct, 13:41
31 Oct, 13:33
31 Oct, 13:29
31 Oct, 13:06
31 Oct, 13:02
31 Oct, 13:00
31 Oct, 12:35
31 Oct, 11:20
31 Oct, 11:07
24 Oct, 20:55
24 Oct, 20:53
#include <ESP8266WiFi.h>
const char* ssid = "Your_SSID";
const char* password = "Your_PASSWORD";
const int flowSensorPin = 2; // سنسور جریان آب به پین دیجیتال 2 متصل شده
volatile int flowCount = 0;
void IRAM_ATTR pulseCounter() {
flowCount++;
}
void setup() {
Serial.begin(115200);
WiFi.begin(ssid, password);
pinMode(flowSensorPin, INPUT);
attachInterrupt(digitalPinToInterrupt(flowSensorPin), pulseCounter, RISING);
while (WiFi.status() != WL_CONNECTED) {
delay(1000);
Serial.println("Connecting to WiFi...");
}
Serial.println("Connected to WiFi");
}
void loop() {
float flowRate = (flowCount * 2.25); // محاسبه جریان (در دقیقه)
Serial.print("Flow rate: ");
Serial.print(flowRate);
Serial.println(" L/min");
flowCount = 0;
// ارسال داده به سرور
WiFiClient client;
if (client.connect("your-server-address.com", 80)) {
client.print(String("GET /update?flowRate=") + flowRate + " HTTP/1.1\r\n" +
"Host: your-server-address.com\r\n" +
"Connection: close\r\n\r\n");
}
delay(10000); // هر 10 ثانیه یک بار دادهها ارسال میشود
}
24 Oct, 19:50
24 Oct, 19:47
24 Oct, 17:48
24 Oct, 17:32
24 Oct, 17:29
24 Oct, 17:22
24 Oct, 17:19
22 Oct, 11:49
22 Oct, 11:34
22 Oct, 11:24
22 Oct, 10:14
22 Oct, 10:03
22 Oct, 10:00
22 Oct, 09:48
22 Oct, 09:40
22 Oct, 09:33
22 Oct, 09:02
22 Oct, 09:00
22 Oct, 08:57
22 Oct, 08:48
22 Oct, 07:36