@palande.vaibhav o.k if all connected o.k, it should show up, remember it will send something when the temperature changes so hold your fingers on the temperature sensor, and it should show up...
Well .. overwriting an !important doesn't seem to be this easy .. :D
The best I could come up with:
// ==UserScript==
// @name New Userscript
// @namespace http://tampermonkey.net/
// @version 0.1
// @description try to take over the world!
// @author You
// @match https://forum.mysensors.org/*
// @grant none
// ==/UserScript==
function addNewStyle(newStyle) {
var styleElement = document.getElementById('styles_js');
if (!styleElement) {
styleElement = document.createElement('style');
styleElement.type = 'text/css';
styleElement.id = 'styles_js';
document.getElementsByTagName('head')[0].appendChild(styleElement);
}
styleElement.appendChild(document.createTextNode(newStyle));
}
(function() {
'use strict';
// Your code here...
addNewStyle('.container { width: 55% !important;}');
//$(".container").removeAttr("width");
})();
@siklosi - thanks for the arduino mini diptrace file. I know the thread is quite old but wanted to ask if the footprint was tested and all pins fit :-). Thanks!
@phil77560 yes, it is possible - I have a SSR switching on a 3kWatt tent with a help of a simple 433Mhz switch controlled by Domoticz. No MySensors in this setup.
@t1m0
Repeater-sensor-node is a Repeater node
What I meant with Normal node is Sensor node and they don't send others data to GW
Sorry if I was not clear 😉
@Magic-W it is the Arduino project that has the attribute, making it possible for other projects (such as MySensors) or a sketch developer to override.
@Dick I love CNC projects. I want to do my first lamination project as a housing for a MySensors project. And also would love the build the Japanese lamp for which I've created the gesture controlled lamp.
I recently purchased a decent table saw from the LIDL. Well it's better than what I have. So I hope to speed up my projects. I've mounted it last Saturday and it works. I've got a new 2000W tool ;-)
Thanks for the info tbo.
I read in forums that the mysensors page is not always up to date because it's manually updated that's why i wasn't sure which info to trust. I trust yours now :)
@karl261 with the original nrf24l01+ modules this is correct, yes.
To save battery use the lowest setting that still works without transmitting errors.
@vizonyc
You need to build a Network Gateway. follow the guide and it will be easy.
I used a UNO with a network Shield (Thera are nice shells for that on thingiverse, like the one I built )
When that is build you use the GatewayW5100MQTTClient sketch. Just edit your mosquitto server in the sketch and upload it to the gateway. Thats it