Skip to content
Toggle navigation
Projects
Groups
Snippets
Help
Дмитрий Решетей
/
OREGON
This project
Loading...
Sign in
Toggle navigation
Go to a project
Project
Repository
Issues
1
Merge Requests
0
Pipelines
Wiki
Snippets
Settings
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Commit 8cda0041
authored
Mar 13, 2020
by
Дмитрий Решетей
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
updated
1 parent
a6ca41df
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
12 additions
and
3 deletions
wifi_reciver/wifi_reciver.ino
wifi_reciver/wifi_reciver.ino
View file @
8cda004
...
...
@@ -24,7 +24,9 @@
#define CONNECT_TIMEOUT 10000 //Время ожидания соединения
#define DISCONNECT_TIMEOUT 10000 //Время ожидания отсоединения
//#define mac "#FF:FF:FF:FF:FF:FF" //МАС-адрес на narodmon.ru d8-f1-5b-07-1c-0b
//#define mac "#D8:F1:5B:07:1C:0B" //МАС-адрес на narodmon.ru d8-f1-5b-07-1c-0b
#define mac "#ESP826677671C0B" //МАС-адрес на narodmon.ru d8-f1-5b-07-1c-0b
//#define mac "#ESP8266FFFFFFFF" //ID или MAC на narodmon.ru
...
...
@@ -59,6 +61,13 @@ Oregon_NR oregon(13, 13, 2, true); // Приёмник 433Мгц подключ
//****************************************************************************************
//Oregon_NR::Oregon_NR(byte MHZ, byte MHZ_INT)
//{
// //INT_NO = MHZ_INT;
// //RECEIVER_PIN = MHZ;
// //pinMode(MHZ, INPUT); // Вывод, на который подключён приёмник
// digitalWrite(MHZ, HIGH); // ДОБАВЛЕННО mr.Tech ВРЕМЕННО ТОЛЬКО ДЛЯ ОТЛАДКИ. нЕОБХОДИМО УДАЛИТЬ!
//}
#define BLUE_LED 2 //Индикация подключения к WiFi
#define GREEN_LED 14 //Индикатор успешной доставки пакета а народмон
...
...
@@ -136,7 +145,7 @@ void setup()
//вкючение прослушивания радиоканала
oregon
.
start
();
oregon
.
receiver_dump
=
0
;
oregon
.
receiver_dump
=
true
;
//Если не распознаются последние байты принятого пакета можно попробовать подстроить частоту захвата данных
oregon
.
timing_correction
=
0
;
// коррекция частоты завхвата данных. Обычно достаоточно подобрать значение от -5 до 5
oregon
.
decode_method
=
3
;
//или использовать метод 3 для декодирования
...
...
@@ -322,7 +331,7 @@ if (oregon.sens_type == WGR800 && oregon.crc_c){
Serial
.
print
(
" TYPE: "
);
Serial
.
print
(
"PCR800,"
);
Serial
.
print
(
" RAIN RATE: "
);
Serial
.
print
(
oregon
.
rain_rate
,
3
);
Serial
.
print
(
oregon
.
rain_rate
,
4
);
// Serial.print(oregon.rain_rate, 3);
//Serial.print(" | ");
//Serial.print(oregon.rain_rate, 1);
...
...
Write
Preview
Markdown
is supported
Attach a file
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to post a comment