This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
root@wirenboard-AYSDI5ZH:~# apt dist-upgrade | |
Чтение списков пакетов… Готово | |
Построение дерева зависимостей | |
Чтение информации о состоянии… Готово | |
Расчёт обновлений… Готово | |
Следующий пакет устанавливался автоматически и больше не требуется: | |
wb-homa-gpio | |
Для его удаления используйте «apt autoremove». | |
Пакеты, которые будут УДАЛЕНЫ: | |
busybox-syslogd |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff --git a/app/examples/svg/Thermometer.svg b/app/examples/svg/Thermometer.svg | |
new file mode 100644 | |
index 0000000..df1b1ae | |
--- /dev/null | |
+++ b/app/examples/svg/Thermometer.svg | |
@@ -0,0 +1,750 @@ | |
+<?xml version="1.0" encoding="UTF-8" standalone="no"?> | |
+<svg | |
+ xmlns:dc="http://purl.org/dc/elements/1.1/" | |
+ xmlns:cc="http://creativecommons.org/ns#" |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<? | |
/* | |
* Copyright (c) 2013, Andrey_B | |
* http://ab-log.ru | |
* Подробнее см. LICENSE.txt или http://www.gnu.org/licenses/ | |
*/ | |
/* Это тестовый скрипт для проверки связи со счетчиком Меркурий 230 | |
* Выводит на экран значение Общей потребренной электроэнергии | |
*/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <signal.h> | |
#include <stdio.h> | |
#include <stdint.h> | |
#include <string.h> | |
#include <mosquitto.h> | |
#define mqtt_host "localhost" | |
#define mqtt_port 1883 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Configuration options | |
{ | |
"debug": false, | |
"ports": [ | |
{ | |
"path" : "/dev/ttyNSC1", | |
"type": "uniel", | |
"baud_rate": 9600, | |
"parity": "N", | |
"data_bits": 8, |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- /home/boger/Projects/wheezy-armel/mosquitto-1.2.1/client/sub_client.c 2013-09-19 00:28:27.000000000 +0400 | |
+++ sub_client.c 2014-06-25 02:06:39.189963840 +0400 | |
@@ -54,6 +54,7 @@ | |
int verbose; | |
bool quiet; | |
bool no_retain; | |
+ int remaining_messages; | |
}; | |
void my_message_callback(struct mosquitto *mosq, void *obj, const struct mosquitto_message *message) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff -r 4deedcb49ff5 client/sub_client.c | |
--- a/client/sub_client.c Tue Mar 25 10:49:28 2014 +0000 | |
+++ b/client/sub_client.c Wed Jun 25 01:58:24 2014 +0400 | |
@@ -57,6 +57,7 @@ | |
bool quiet; | |
bool no_retain; | |
bool eol; | |
+ int remaining_messages; | |
}; | |