LoRaWAN: controlling of downlink on Datacake
- Информация о материале
- Автор: Super User
- Родительская категория: Заметки
- Категория: Программирование
- Просмотров: 929
function Encoder(measurements, port) {
// WARNING!!! Please note that this is UTC Time!!!
// Please convert to your local timezone!!!
var startTime = '07:00:00'; // 9am CET
var endTime = '16:00:00'; // 6pm CET
var currentDate = new Date()
startDate = new Date(currentDate.getTime());
startDate.setHours(startTime.split(":")[0]);
startDate.setMinutes(startTime.split(":")[1]);
startDate.setSeconds(startTime.split(":")[2]);
endDate = new Date(currentDate.getTime());
endDate.setHours(endTime.split(":")[0]);
endDate.setMinutes(endTime.split(":")[1]);
endDate.setSeconds(endTime.split(":")[2]);
// Check if is valid
var valid = startDate < currentDate && endDate > currentDate
// if the current time lies within the desired timeframe
if (valid) {
// send the actual downlink, replace with yours
if(measurements.LED_ON.value) return [1];
else return [0];
}
// in case it is not valid, do not return anything here
// in order to abort sending a downlink
}
To realize more:
CoCo Antenna 868M Collection
- Информация о материале
- Автор: Super User
- Родительская категория: Заметки
- Категория: Электроника / cхемотехника
- Просмотров: 1190

2. https://keptenkurk.wordpress.com/2018/03/26/a-lora-868mhz-collinear-antenna/
3. https://keptenkurk.files.wordpress.com/2018/03/coaxcollinearlora1.jpg
SharpDevelop-5.2.1 (Alternate of Visual Studio)
- Информация о материале
- Автор: Super User
- Родительская категория: Заметки
- Категория: Программирование
- Просмотров: 1260
Легковесный простой и быстрый как в старые добрые времена
Kt
Enjoy!
Wireguide on VPS true working guide
- Информация о материале
- Автор: Super User
- Родительская категория: Заметки
- Категория: Компьютерная повседневность
- Просмотров: 874
then
How To Set Up A VPN On A Router // Wireguard on OpenWrt
- Информация о материале
- Автор: Super User
- Родительская категория: Заметки
- Категория: Компьютерная повседневность
- Просмотров: 901
Страница 33 из 197

