Great job guys, I saw many interested people.
The setup of the automated doll house was fascinating, also my son loved the sensor house (with the ghost)
Only this, I saw myself in one of taken pictures but unfortunately without the MySensor t-shirt ;-(
ArduiSens
@ArduiSens
Best posts made by ArduiSens
-
RE: ๐ฌ MySensors @Eindhoven Maker Fair 2017 2-3 September
-
RE: Set output pin High before message initialising
@mfalkvidd
OK, the before() works!0 MCO:BGN:INIT NODE,CP=RSNNA--,VER=2.1.1
3 MCO:BGN:BFR
running before() function
2006 TSM:INIT
2011 TSF:WUR:MS=0
2012 TSM:INIT:TSP OK
2014 TSM:INIT:STATID=25
2016 TSF:SID:OK,ID=25
2018 TSM:FPAR
2036 TSF:MSG:SEND,25-25-255-255,s=255,c=3,t=7,pt=0,l=0,sg=0,ft=0,st=OK:
2850 TSF:MSG:READ,0-0-25,s=255,c=3,t=8,pt=1,l=1,sg=0:0
2855 TSF:MSG:FPAR OK,ID=0,D=1
4043 TSM:FPAR:OKthanks for the cooperation mfalkvidd & rejoe2
Latest posts made by ArduiSens
-
RE: ๐ฌ Building a wired RS485 sensor network
I see there is a possibility the combine Ethernet with RS485.
Maybe you can check the setup as they did here:https://www.openhardware.io/view/649/RS485-Ethernet-Gateway#tabs-comments
https://github.com/feanor-anglin/GetWired-Project/blob/master/GetWired Ethernet Gateway/Gateway.ino
-
RE: ๐ฌ Building a wired RS485 sensor network
@Flyer said in
Building a wired RS485 sensor network:
ng to build
Hi Flyer, As far as I know this is not possible.
-
RE: Who has experience with (E34-DTU-2G4D20) Full Duplex RS232/RS485 to nRF24L01P ?
This can maybe a solution for having a bridge between RS485 and nRF24L01.
-
Who has experience with (E34-DTU-2G4D20) Full Duplex RS232/RS485 to nRF24L01P ?
Re: Bridge between RF24 and RS485
https://www.aliexpress.com/item/4000512016252.html?spm=a2g0o.productlist.0.0.7879a483YoMye0&algo_pvid=fd05d00f-4103-4e95-a0c1-f8af3889cffa&algo_expid=fd05d00f-4103-4e95-a0c1-f8af3889cffa-10&btsid=0bb0623b16125608659071681e09c9&ws_ab_test=searchweb0_0,searchweb201602_,searchweb201603_
thanks -
RE: sending two messages one after another
Hello all,
is this solution added to the standard MySensor library?
If so, in which version is it implemented?I want to be sure there are no missing messages when having a list of messages to be sent.
many thanks in advance
-
RE: Set output pin High before message initialising
@mfalkvidd
OK, the before() works!0 MCO:BGN:INIT NODE,CP=RSNNA--,VER=2.1.1
3 MCO:BGN:BFR
running before() function
2006 TSM:INIT
2011 TSF:WUR:MS=0
2012 TSM:INIT:TSP OK
2014 TSM:INIT:STATID=25
2016 TSF:SID:OK,ID=25
2018 TSM:FPAR
2036 TSF:MSG:SEND,25-25-255-255,s=255,c=3,t=7,pt=0,l=0,sg=0,ft=0,st=OK:
2850 TSF:MSG:READ,0-0-25,s=255,c=3,t=8,pt=1,l=1,sg=0:0
2855 TSF:MSG:FPAR OK,ID=0,D=1
4043 TSM:FPAR:OKthanks for the cooperation mfalkvidd & rejoe2
-
RE: Set output pin High before message initialising
hello rejoe2, you have to power the MAX chip before you come into the loop() because the first time you have to send the node configuration to the gw.
Putting thepinMode(SENSOR_POWER_PIN, OUTPUT);
digitalWrite(SENSOR_POWER_PIN, HIGH);code in the setup() is also too late.
If the MAX isn't powered before, you get error messages because the node can't connect to the gw.btw the DE-PIN is not related to powering the transceiver --> right, it's a similar management, it was an example to find a solution
-
Set output pin High before message initialising
Is there a way to set an output pin high before sending the init message to the gateway?
so before
// Initialize messages
MyMessage msgTemp(CHILD_ID_TEMP,V_TEMP);
MyMessage sleepMsg(CHILD_ID_SLEEP, V_TEXT);I want to save energy (300ยตA) so I want to power the MAX485 only when sending messages.
This is manageable in the sketch (set output pin high after returning from sleep mode, low before sleep) but at first start it isn't. I walked through the libraries but I didn't find the code where the DE pin is managed in order to send data to the MAX chip whch will send the data to the gateway. If I could find this I can make a similar set-up. Thanks in advance. -
RE: ๐ฌ MySensors @Eindhoven Maker Fair 2017 2-3 September
Great job guys, I saw many interested people.
The setup of the automated doll house was fascinating, also my son loved the sensor house (with the ghost)
Only this, I saw myself in one of taken pictures but unfortunately without the MySensor t-shirt ;-( -
RE: NodeManager v1.6-dev: comments and issues
Hello,
I see a problem when using setSleepSeconds / setPowerPins in combination with the serial RS485 option.
void before() {
// setup the serial port baud rate
Serial.begin(MY_BAUD_RATE);
nodeManager.setSleepSeconds(30);
nodeManager.setPowerPins(11,12,1000);/*
- Register below your sensors
*/
nodeManager.registerSensor(SENSOR_DS18B20,3);
gives a temperature value of 7368:
0;255;3;0;9;TSF:MSG:READ,3-3-0,s=255,c=3,t=22,pt=5,l=4,sg=0:7368
3;255;3;0;22;7368
RECV S=3 I=255 C=3 T=22 P=
void before() {
// setup the serial port baud rate
Serial.begin(MY_BAUD_RATE);
nodeManager.setReportIntervalSeconds(50);/*
- Register below your sensors
*/
nodeManager.registerSensor(SENSOR_DS18B20,3);
gives a correct value:
0;255;3;0;9;TSF:MSG:READ,3-3-0,s=1,c=1,t=0,pt=7,l=5,sg=0:19.75
3;1;1;0;0;19.75
RECV S=3 I=1 C=1 T=0 P= - Register below your sensors