Beginner - what is wrong
-
The node requests an ID from the controller.. It is also shown in the MQTT on your raspberry pi, but the controller doesn't seem to reply to this ID request.
Have you configured OpenHAB to use MQTT for the mysensor gateway? Does the log in OpenHAB tell you anything?
Did you try to hardcode the node ID, as suggested by @gohan? If yes, could you post the node and gateway logs after this?
-
@gohan But I don't have arduino, I have direct connection between USB/TTL and sensebender micro like this (double checked)
CP1202 USB-TTL <-> MySensebender micro
GND <-> GND
3v3 <-> VCC (tried as well with AA battery without VCC connected)
RX <-> TX
TX <-> RX
DTR <-> DTRIs there some way to manipulate reset directly on Sensebender micro? Like try to generate edge with the wire?
-
What target do you use in Arduino, when you're trying to program the sensebender micro?
-
And you can successfully see the debug log in your terminal program, from your sensebender micro?
@tbowmo Yes, i.e. now I can see in the terminal all this:
Sensebender Micro FW 1.1req node id send: 255-255-0-0 s=255,c=3,t=3,pt=0,l=0,st=ok: sensor started, id 255 - Online! req node id send: 255-255-0-0 s=255,c=3,t=3,pt=0,l=0,st=ok: req node id send: 255-255-0-0 s=255,c=3,t=3,pt=0,l=0,st=ok: req node id send: 255-255-0-0 s=255,c=3,t=3,pt=0,l=0,st=ok: req node id send: 255-255-0-0 s=255,c=3,t=3,pt=0,l=0,st=ok: isMetric: 1 req node id send: 255-255-0-0 s=255,c=3,t=3,pt=0,l=0,st=ok: T: 19.93 H: 79 req node id send: 255-255-0-0 s=255,c=3,t=3,pt=0,l=0,st=ok: req node id send: 255-255-0-0 s=255,c=3,t=3,pt=0,l=0,st=ok: -
@tbowmo Yes, i.e. now I can see in the terminal all this:
Sensebender Micro FW 1.1req node id send: 255-255-0-0 s=255,c=3,t=3,pt=0,l=0,st=ok: sensor started, id 255 - Online! req node id send: 255-255-0-0 s=255,c=3,t=3,pt=0,l=0,st=ok: req node id send: 255-255-0-0 s=255,c=3,t=3,pt=0,l=0,st=ok: req node id send: 255-255-0-0 s=255,c=3,t=3,pt=0,l=0,st=ok: req node id send: 255-255-0-0 s=255,c=3,t=3,pt=0,l=0,st=ok: isMetric: 1 req node id send: 255-255-0-0 s=255,c=3,t=3,pt=0,l=0,st=ok: T: 19.93 H: 79 req node id send: 255-255-0-0 s=255,c=3,t=3,pt=0,l=0,st=ok: req node id send: 255-255-0-0 s=255,c=3,t=3,pt=0,l=0,st=ok: -
@tbowmo I will try to install all the drivers & IDE on diferent comp tomorrow. I already did the downgrade from 1.8 because of the note "Arduino IDE 1.5.x & 1.6.x compatible." in SB tech specs.
Anyway thanks for your help. I will have to invest more hours yet to reinvent the wheel but it is fine to have somebody to consult with. -
@tbowmo I will try to install all the drivers & IDE on diferent comp tomorrow. I already did the downgrade from 1.8 because of the note "Arduino IDE 1.5.x & 1.6.x compatible." in SB tech specs.
Anyway thanks for your help. I will have to invest more hours yet to reinvent the wheel but it is fine to have somebody to consult with. -
So I have tried it on the different computer and the results are the same.
This is what I did:
- download ide 1.8 here https://www.arduino.cc/en/main/software & install
- download CP CP2102 win 10 drivers here https://www.silabs.com/products/development-tools/software/usb-to-uart-bridge-vcp-drivers
- install mysensors libraries in IDE via manage library internal tool
- add https://raw.githubusercontent.com/mysensors/ArduinoBoards/master/package_mysensors.org_index.json to IDE
- select Sensebender micro board, COM6 (the only available), Programmer AVRISP.mkII
- add necessary libraries to compile the sensebender micro sketch as described here https://www.mysensors.org/about/arduino#optional---install-external-mysensors-examples - via creating zip files and add zip library file to sketch. Necessary libraries were SI7021 + sha204 + RunningAverage
- compile and upload the basic sketch from here https://www.openhardware.io/view/1/Sensebender-Micro
Result is: stk500_getsync() attempt 7 of 10: not in sync: resp=0xdb
-
Wait a moment, you choose AVRISP.mkII ? That shouldn't be necessary, as it is only needed if you ever want to upload a new bootloader (and then you need a different programming adapter as well)
You are using the build in arduino programming tool to download? (Second icon from left, in the top menu)
-
Wait a moment, you choose AVRISP.mkII ? That shouldn't be necessary, as it is only needed if you ever want to upload a new bootloader (and then you need a different programming adapter as well)
You are using the build in arduino programming tool to download? (Second icon from left, in the top menu)
@tbowmo Yes, second icon from the left (or Ctrl+U).
By pressing Project Upload via programmer (in menu Project or Ctrl+Shift+U) the result is little bit different - no stk500_getsync() attempt 7 of 10: not in sync: resp=0xdb error just uncommented Upload error. -
When you have chosen SenseBender Micro as target, which sub variant did you choose? (8Mhz, or 1Mhz?) Can't remember if there are any differences in baudrate.. And I'm not at my arduino dev. machine right now. You should choose the 8Mhz as target.
Also could you check soldering of the board? (specially around the reset line, capacitor, resistors, atmega328)
That is the last things that I could think about right now..
-
I have selected 8 MHz. This is what it looks like by me

This is what I did today - got another sensebender micro (SBM) board, soldered jumpers, connected again. Then I measured the conductivity between DTR pin on CP2102 chip and capacitor on DTR wire on SBM. It shall be conected via my wires and it was correctly connected.
Then I run the compillation again and the result is the same - not in sync. So I feel I have replaced everything but still getting the same error.
