<?xml version="1.0" encoding="UTF-8"?><rss xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:atom="http://www.w3.org/2005/Atom" version="2.0"><channel><title><![CDATA[ioBroker разработка]]></title><description><![CDATA[Вопросы о разработке собственного драйвера или об отладке существующих]]></description><link>https://forum.iobroker.net/category/74</link><generator>RSS for Node</generator><lastBuildDate>Tue, 11 Aug 2026 15:12:47 GMT</lastBuildDate><atom:link href="https://forum.iobroker.net/category/74.rss" rel="self" type="application/rss+xml"/><pubDate>Sat, 11 Dec 2021 05:35:42 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Интеграция ioBroker с Mosquitto]]></title><link>https://forum.iobroker.net/topic/50169/интеграция-iobroker-с-mosquitto</link><guid isPermaLink="true">https://forum.iobroker.net/topic/50169/интеграция-iobroker-с-mosquitto</guid><pubDate>Sat, 11 Dec 2021 05:35:42 GMT</pubDate></item><item><title><![CDATA[vscode и wsl: работа с кодом и отладка адаптера]]></title><description><![CDATA[@petervoronov Чуть исправил некоторые неточности и убрал лишний блок в конфигурации отладки
]]></description><link>https://forum.iobroker.net/topic/44872/vscode-и-wsl-работа-с-кодом-и-отладка-адаптера</link><guid isPermaLink="true">https://forum.iobroker.net/topic/44872/vscode-и-wsl-работа-с-кодом-и-отладка-адаптера</guid><dc:creator><![CDATA[PeterVoronov]]></dc:creator><pubDate>Sat, 08 May 2021 11:03:55 GMT</pubDate></item><item><title><![CDATA[Modbus адреса в ТРМ133М-02]]></title><description><![CDATA[Для ТРМ133 ставим в настройках Modbus (основное) в меню "максимальная длина запроса на чтение (float)" на 1 registers : опрос работает. :idea:
]]></description><link>https://forum.iobroker.net/topic/19090/modbus-адреса-в-трм133м-02</link><guid isPermaLink="true">https://forum.iobroker.net/topic/19090/modbus-адреса-в-трм133м-02</guid><dc:creator><![CDATA[Oleg]]></dc:creator><pubDate>Wed, 23 Jan 2019 10:28:15 GMT</pubDate></item><item><title><![CDATA[Iobroker &amp; Eclipse]]></title><description><![CDATA[Should Be possible. Look here: https://www.eclipse.org/community/eclip … ticle3.php
Gesendet von meinem HTC U11 mit Tapatalk
]]></description><link>https://forum.iobroker.net/topic/16594/iobroker-eclipse</link><guid isPermaLink="true">https://forum.iobroker.net/topic/16594/iobroker-eclipse</guid><dc:creator><![CDATA[Jey Cee]]></dc:creator><pubDate>Wed, 14 Nov 2018 11:00:03 GMT</pubDate></item><item><title><![CDATA[IoBroker.ham]]></title><description><![CDATA[Адаптер ham конфликтует с адаптером mihome за порт  9898 (erradrrinuse)
по отдельности все прекрасно работает.
Mihome на другом порту не соединяется, ham настроить порт не позволяет.
каким образом поменять порт у ham?
]]></description><link>https://forum.iobroker.net/topic/13511/iobroker-ham</link><guid isPermaLink="true">https://forum.iobroker.net/topic/13511/iobroker-ham</guid><dc:creator><![CDATA[drdima]]></dc:creator><pubDate>Sun, 17 Jun 2018 16:03:35 GMT</pubDate></item><item><title><![CDATA[К вопросу о правильности работы датчика движения aqara]]></title><link>https://forum.iobroker.net/topic/11759/к-вопросу-о-правильности-работы-датчика-движения-aqara</link><guid isPermaLink="true">https://forum.iobroker.net/topic/11759/к-вопросу-о-правильности-работы-датчика-движения-aqara</guid><pubDate>Wed, 21 Mar 2018 10:50:22 GMT</pubDate></item><item><title><![CDATA[Визуальное програмирование собитый на языке FBD]]></title><description><![CDATA[Это сразу тебе и RS-триггеры и таймеры и И-ИЛИ-НЕ и т.д и т.д. и тд.
Но как правило подметили - проблема в не RtOS-ности того же iobroker'а…
]]></description><link>https://forum.iobroker.net/topic/11682/визуальное-програмирование-собитый-на-языке-fbd</link><guid isPermaLink="true">https://forum.iobroker.net/topic/11682/визуальное-програмирование-собитый-на-языке-fbd</guid><dc:creator><![CDATA[teemon]]></dc:creator><pubDate>Sun, 18 Mar 2018 18:48:19 GMT</pubDate></item><item><title><![CDATA[Виджет для ИоБрокер]]></title><description><![CDATA[@de_coder:

Тут надо смотреть весь твой код
открой отладку … в браузере и смотри, возможно у тебя критические ошибки, до старта твоего скрипта, после которой уже дальнейший JS не работает.
Так же, я сам не писал HTML странички в vis...
Но js который ты пишешь в "скриптах" это СЕРВЕРНЫЙ js, который выполняется на сервере, а не в браузере пользователя. По этому событие click надо вероятно перехватывать по другому без использования Jquery
Вот тебе пример..
Делаем кнопку, после чего серверный код, для этой кнопки будет выглядеть примерно так...

// Создаем объект кнопки.. и привязываем объект к кнопке в vis
createState('mirobot_home_btn');

// При нажатии (изменении ... вызывается функция...)
on({id: "mirobot_home_btn", change: "click"}, function (obj) {

});

```` `  


это не странички/скрипты в вис/вкладке скрипты …это попытка создать виджет, который уже в вис можно просто перетащить и пользовать. Весь код на гите лежит.
]]></description><link>https://forum.iobroker.net/topic/11074/виджет-для-иоброкер</link><guid isPermaLink="true">https://forum.iobroker.net/topic/11074/виджет-для-иоброкер</guid><dc:creator><![CDATA[salambelgorod]]></dc:creator><pubDate>Wed, 21 Feb 2018 12:16:25 GMT</pubDate></item><item><title><![CDATA[State value]]></title><link>https://forum.iobroker.net/topic/9171/state-value</link><guid isPermaLink="true">https://forum.iobroker.net/topic/9171/state-value</guid><pubDate>Wed, 13 Dec 2017 04:23:07 GMT</pubDate></item><item><title><![CDATA[Собственный драйвер]]></title><description><![CDATA[https://github.com/ioBroker/ioBroker/wi … umentation
https://github.com/ioBroker/ioBroker/wi ... nvironment
]]></description><link>https://forum.iobroker.net/topic/6366/собственный-драйвер</link><guid isPermaLink="true">https://forum.iobroker.net/topic/6366/собственный-драйвер</guid><dc:creator><![CDATA[Bluefox]]></dc:creator><pubDate>Mon, 05 Jun 2017 02:30:59 GMT</pubDate></item><item><title><![CDATA[Выгрузка объектов драйвера]]></title><link>https://forum.iobroker.net/topic/4099/выгрузка-объектов-драйвера</link><guid isPermaLink="true">https://forum.iobroker.net/topic/4099/выгрузка-объектов-драйвера</guid><pubDate>Thu, 15 Dec 2016 16:10:15 GMT</pubDate></item><item><title><![CDATA[Драйвер Laurent-2]]></title><description><![CDATA[Laurent2.
]]></description><link>https://forum.iobroker.net/topic/3360/драйвер-laurent-2</link><guid isPermaLink="true">https://forum.iobroker.net/topic/3360/драйвер-laurent-2</guid><dc:creator><![CDATA[DIMSS]]></dc:creator><pubDate>Sun, 18 Sep 2016 14:40:15 GMT</pubDate></item><item><title><![CDATA[NPM Доступ]]></title><description><![CDATA[@Bluefox:

Уважаемые разработчики драйверов (installator ;) )
Дайте мне пожалуйста права для того чтобы пушить на npm.
В случае, если у вас в будущем пропадёт желание дальше проект развивать, я смогу обновлять пакет сам.
Обязуюсь делать это только в экстренных случаях и только если разработчик сам не может или не хочет.
npm owner add bluefox iobroker.adapterName
```` `  


Только сегодня заметил сообщения, раньше на все новые темы и сообщения прилетало письмо, сейчас приходится просматривать форум переодически.
Проверяй, вроде добавил для iobroker.starline
]]></description><link>https://forum.iobroker.net/topic/2458/npm-доступ</link><guid isPermaLink="true">https://forum.iobroker.net/topic/2458/npm-доступ</guid><dc:creator><![CDATA[instalator]]></dc:creator><pubDate>Tue, 03 May 2016 21:47:18 GMT</pubDate></item><item><title><![CDATA[API для общения с ioBroker]]></title><description><![CDATA[Судя по всему никто не стал ничего делать. Но доку я всё равно начал писать:
https://github.com/ioBroker/ioBroker.so … /README.md
]]></description><link>https://forum.iobroker.net/topic/2249/api-для-общения-с-iobroker</link><guid isPermaLink="true">https://forum.iobroker.net/topic/2249/api-для-общения-с-iobroker</guid><dc:creator><![CDATA[Bluefox]]></dc:creator><pubDate>Thu, 31 Mar 2016 13:14:59 GMT</pubDate></item><item><title><![CDATA[JIRA Трекер ошибок]]></title><link>https://forum.iobroker.net/topic/1879/jira-трекер-ошибок</link><guid isPermaLink="true">https://forum.iobroker.net/topic/1879/jira-трекер-ошибок</guid><pubDate>Sat, 30 Jan 2016 18:47:12 GMT</pubDate></item><item><title><![CDATA[Программа управления компьютером GetAdmin]]></title><description><![CDATA[Update
I have just published an ioBroker adapter which uses GetAdmin tool to control MS Windows devices. Thanks to @instalator for his GetAdmin tool.
Github: https://github.com/Mic-M/ioBroker.windows-control
ioBroker Forum Thread (in German - but please feel free to respond in any language): https://forum.iobroker.net/topic/31485/test-adapter-windows-control-v0-0-x-github
]]></description><link>https://forum.iobroker.net/topic/1505/программа-управления-компьютером-getadmin</link><guid isPermaLink="true">https://forum.iobroker.net/topic/1505/программа-управления-компьютером-getadmin</guid><dc:creator><![CDATA[Mic]]></dc:creator><pubDate>Mon, 30 Nov 2015 14:35:32 GMT</pubDate></item><item><title><![CDATA[Управление различными проигрователями мультимедиа]]></title><link>https://forum.iobroker.net/topic/1498/управление-различными-проигрователями-мультимедиа</link><guid isPermaLink="true">https://forum.iobroker.net/topic/1498/управление-различными-проигрователями-мультимедиа</guid><pubDate>Sat, 28 Nov 2015 17:35:57 GMT</pubDate></item><item><title><![CDATA[Node.js + Io.js = Node.js 4.0.0]]></title><link>https://forum.iobroker.net/topic/1082/node-js-io-js-node-js-4-0-0</link><guid isPermaLink="true">https://forum.iobroker.net/topic/1082/node-js-io-js-node-js-4-0-0</guid><pubDate>Wed, 09 Sep 2015 11:57:13 GMT</pubDate></item><item><title><![CDATA[Написание сценариев]]></title><description><![CDATA[Думаю нужно что то типо сервиса для написания сценариев.
или хотябы завести переменные.
Как кстати раскидать состояния по комнатам?
]]></description><link>https://forum.iobroker.net/topic/600/написание-сценариев</link><guid isPermaLink="true">https://forum.iobroker.net/topic/600/написание-сценариев</guid><dc:creator><![CDATA[instalator]]></dc:creator><pubDate>Wed, 03 Jun 2015 18:31:55 GMT</pubDate></item><item><title><![CDATA[Управление оборудованием по RS232]]></title><description><![CDATA[@eric1905:

Hi Instalator,
I have a question regarding the connection to my LG via RS232.
As you wrote in your adapter page, I have:
1 Arduino Uno
1 W5100 shield
1 RS232 module
First question:
Is the RS232 connected via 3.3 V or 5V?
2. If I use the Script from the page you linked: https://github.com/stepansnigirev/Ardui … ethernet2h
I am not able to upload it to my arduino, because Arduino UNO does not support Serial1
3. If I try to upload the Script from your page for ioBroker:
https://translate.google.de/translate?h ... rev=search
I receive the message:
serial_to_ethernet:10: error: 'callback' was not declared in this scope
I think this is because somehting has changed and i have to provide the method before the usage of callback, so i inserted:
// Callback function header
void callback(char* topic, byte* payload, unsigned int length);
before line 10.
Then i have an error because of too much variables. So i removed some commands for the tv input mode, just for testing purposes, and i was able to upload the sketch.
But then i am not able to connect via ioBroker.
Is there still something I have forgotten which must be changed?
What about this:
11
#define id_connect "myhome-RS232"
12
#define Prefix_subscribe "myhome/RS232/"
Do i have to configure it?
Is port 23 in ioBroker adapter ok? Where is it defined?
I expect the wires are as follows:
RS232 --&gt; Arduino UNO
TX --&gt; RX
RX --&gt; TX
GND --&gt; GND
VCC --&gt; 3.3/5/12?
Sorry for the usage of this very old thread, but i am not allowed to send you a message at the moment and I didn't find another way to contact you.
Best regards,
Eric `

Hi!


5V max3232 schematic https://blog.instalator.ru/archives/744


https://github.com/instalator/TelnetToE … r/main.ino


]]></description><link>https://forum.iobroker.net/topic/453/управление-оборудованием-по-rs232</link><guid isPermaLink="true">https://forum.iobroker.net/topic/453/управление-оборудованием-по-rs232</guid><dc:creator><![CDATA[instalator]]></dc:creator><pubDate>Tue, 05 May 2015 15:50:24 GMT</pubDate></item><item><title><![CDATA[Webstorm]]></title><description><![CDATA[Да, так просто. Зашел в раздел для разработчиков, написано скачать и установить WS. Запустил, а он мне введи лицензию или 30 дней.
Полазил, нашел ключик, сработал. Поэтому буду дальше изучать :).
]]></description><link>https://forum.iobroker.net/topic/127/webstorm</link><guid isPermaLink="true">https://forum.iobroker.net/topic/127/webstorm</guid><dc:creator><![CDATA[vtec]]></dc:creator><pubDate>Tue, 17 Mar 2015 09:15:03 GMT</pubDate></item></channel></rss>