lae reply too;
i have 2.0.0 board version as i wrote in my first post....
for the moment i change for a w5100 gateway but it is not a good solution for me...
thanks for help
bigjimjeedom
@bigjimjeedom
Best posts made by bigjimjeedom
Latest posts made by bigjimjeedom
-
RE: WIFI Gateway NodeMCU 0.9 always reset
-
WIFI Gateway NodeMCU 0.9 always reset
hello,
i made a wifi Gateway with NodeMCu 0.9 (ESP12)
I used the 2.0.0 ESP8266 version but the Gateway always reset:ESP8266 MySensors Gateway
Connecting to jimwifi_ext
......Connected!
IP: 192.168.0.22ets Jan 8 2013,rst cause:4, boot mode:(3,4)
wdt reset
load 0x4010f000, len 1264, room 16
tail 0
chksum 0x42
csum 0x42
~ld
does someone has an ide to solve this ?
(in my config.h i have :#define RF24_PA_LEVEL_GW RF24_PA_LOW) -
RE: NRF24L01+PA+LNA
@Oitzu
thanks a lot for your help !
i try this tonight and i will tell you! -
RE: NRF24L01+PA+LNA
@Oitzu
do you use thoses settings (max max) ? because some people says that it was not the good way with this module but maybe it is because of bad power supply ???
i use this for supplying (with a 5v from USB):
http://fr.aliexpress.com/item/New-Socket-Adapter-plate-Board-for-8Pin-NRF24L01-Wireless-Transceive-module-51/32230227557.html?spm=2114.30011508.3.2.TXAdlL&ws_ab_test=searchweb201556_1,searchweb201602_1_10036_10035_10034_10033_507_10032_10020_10001_10002_10017_10010_10005_10006_10011_10003_10021_10004_10022_10009_401_10008_10018_10019,searchweb201603_8&btsid=3092fef5-564c-43aa-98a5-0e834674bcd1 -
RE: NRF24L01+PA+LNA
@Oitzu ,
just a question; i have a serial gateway on my JEEDOM box and i have a range problem in my stone house;
so i replace my nrf24l01+ "classic" with a shielded NRF24L01+PA+LNA (as described in the web site you gave us) powered with a separate 3.3v regulator (the module as a little router antenna).
it is working but he range is similar as with the classic version.
So i wanted to know your setting in "config.h" ;
mine are:
#define RF24_PA_LEVEL RF24_PA_MAX
#define RF24_PA_LEVEL_GW RF24_PA_LOW
#define RF24_DATARATE RF24_250KBPSwhat are your settings for a good range ? (i need about 50m in my house)
thanks for your help
-
RE: Experimenting with cheap 433mhz gadgets
Hello Dwalt ! thanks for your quick answer !
My remote is an old style Chacon with 8 buttons
[This remote has a 4 positions dip switch on the back (group 1 2 3 4) so i plan to put my 4 wall plugs on group 1 and my remote on group 2; with that, the plugs will be commuted by the mysensors rf433 emitter and the remote will send codes to my receiver mysensors without communicating directly with plugs]
And my receiver is a "cheap" one but i will have a sperheterodyne in a few days (according yours tests)To receive my codes i use RCswitch library and this code:
#include <RCSwitch.h> * RCSwitch mySwitch = RCSwitch(); void setup() { Serial.begin(9600); mySwitch.enableReceive(0); // Receiver on inerrupt 0 => that is pin #2 } void loop() { if (mySwitch.available()) { output(mySwitch.getReceivedValue(), mySwitch.getReceivedBitlength(), mySwitch.getReceivedDelay(), mySwitch.getReceivedRawdata(),mySwitch.getReceivedProtocol()); mySwitch.resetAvailable(); } }
With this i can read rf433 codes on serial but it don't send in mysensors..
thanks for your help, i wil try to understand how to modify your code
-
RE: Experimenting with cheap 433mhz gadgets
Hello,
after many test to command my chacon rf433 wall plugs i am really pleased about this feature; its cheap and i have a sketch which is ok to command 4 plugs but now i want to receive my rf433 codes from a remote but i cant do myself a sketch for mysensors ; with a example arduino sketch i can read codes but i don't know how to make a sketch to send a message in mysensors for my jeedom controller. (with the codes i want to trigger a scenario)
I understant that Walt seems to have done this: is it possible to have the code for this ? Thanks for your help