Hi,
I'm sorry. I didn't test this method yet.
I have no time :(
If you find the solution, please tell me.
thanks
Hi,
I'm sorry. I didn't test this method yet.
I have no time :(
If you find the solution, please tell me.
thanks
It's very good @hek !
thanks for your answer.
Hi all,
I use my arduino network with ethernet interface and MQTT protocol.
Now, I want to use the same hardware but with MySensors + MQTT (no gateway role).
Is it possible to use mysensors with no NRF24 or RFM69 ?
when I test I had this issue:
Radio init failed. Check wiring.
normal ... but is there an option to do this ?
thanks in advance
yes,
I'm going to ask ;)
Hi @hek
In ebay pictures you can see 433Mhz receiver...

is it the same no ?

Hi all,
someone has already use livolo Glass Panel Touch Light Wall Switch (or livolo like) ?
I found a arduino library to work with it, but I'm not sure switch below is a 433Mhz compatible:
I'm sorry for that ;)
It works perfectly after the library update
thank you very much @sundberg84
Thanks @sundberg84
I'm going to update my library now !
I will tell you if it works
Hi all,
I'm playing with LCD screen. I want to display in my LCD a string from my mqtt broker.
Ex:
OpenHAB --> MQTT Broker --> MQTT Gateway --> LCD (directly connected on gateway)
I can send a message Ex: "TEST_LCD_1_MIKA_COOL":
Result:
0;0;3;0;9;Message arrived on topic: mygateway1-in/0/3/1/V_TEXT/47
Incoming msg DATA: TEST_LCD_1_MIKA_COOL
but when I send a shorter message Ex: "TEST_LCD_2_SUPER"
0;0;3;0;9;Message arrived on topic: mygateway1-in/0/3/1/V_TEXT/47
Incoming msg DATA: TEST_LCD_2_SUPERCOOL
We can see that message.getString is false. It adds the end of the last string on this new string.
buffer not empty ?
My conf:
void receive(const MyMessage &message) {
// We only expect one type of message from controller. But we better check anyway.
if (message.type==V_TEXT && message.sensor == LCD_CHILD) {
lcd.clear();
Serial.print("Incoming msg DATA: ");
lcd.print("Incoming msg DATA: ");
lcd.setCursor ( 0, 1 );
Serial.println(message.getString());
lcd.print(message.getString());
}
}
can you help me please ?
Thanks in advance
Just for fun : https://youtu.be/2Um5PQ_tZXA
Arduino has accepted my library ;)
it available in libraries manager on the arduino IDE
First version of my official arduino library : https://github.com/Mickaelh51/Arduino-Oregon-Library
I asked at Arduino software to put this new library (1.5 arduino format) in their official "libraries manager" ==> https://github.com/arduino/Arduino/issues/4371
If they ok to include my library, the arduino IDE will be able to check the available updates.
This 1.0.0 version has been tested with : Arduino UNO / 433Mhz receiver / Oregeon sensor THGR228N.
I'm already working on developement github branch with many enhancements.
Ex: Data Checksum / Others sensors (OWL Electricty Meter / WGR918 Annometer / RGR918 Rain Guage / UV138 / THGR918 Outside Temp-Hygro / BTHR918 Temp-Hygro-Baro)
if you want to test master or developement branch, I'm free to discuss with you.
good playing ;)
hi @Sparkman
I use Openhab.
But "presentation" function is used for what ? Is it just for the gateway sends the correct type ID ?
Hi list,
I'm looking for a way to see all registered sensors on gateway.
Ex:
can I send a specific MQTT message (if MQTT gateway) to receive a complete list ? A local software ? A web frontend ?
thanks in advance
Hi, I finished my first complete library Oregon.h with 2 examples (1 with MySensors / 2 without MySensors).
I will test it next week and I will post it here.
After many tests I post a pool request in official mysensors project on github.
Did you have time to test the first version ?
thanks in advance
ESP8266 is faster than W5100 ok thanks.
but if I want work with ethernet only ?
Hi,
No problem ;)
I have only 3 sensors in test. But with this nodes I feel my gateway is low.
When I send an order from MQTT (Ex "On" command to specific relay), it's not in real time (few seconds to execute this order).
But when I shutdown 2 nodes / 3. I saw the same order seems faster.
So, my question is: Is there a recommendation for gateway hardware ?
thanks and happy new year 2016 ;)
Hi,
Actually I'm using an Arduino UNO to be the ethernet (MQTT) gateway.
But, I feel that Arduino UNO is too low when there is many sensors.
Do you have an experience with UNO or MEGA to be a MQTT Gateway ?
which hardware to choose ?
thanks in advance
Ok thanks.
I will do some enhancements before post my pool request.
bye
@hek thanks for your answer.
If I understood, I can use save & load state if:
for (i=EEPROM_LOCAL_CONFIG_ADDRESS; i<COUNT_OREGON_SENSORS; i++){
is it exact ?
thanks in advance
PS (10 mins after):
I don't understand, indeed with this variable:
EEPROM_CONTROLLER_CONFIG_ADDRESS (EEPROM_ROUTES_ADDRESS+256)
we are beyond the maximum ID (255) no ?