-
Notifications
You must be signed in to change notification settings - Fork 54
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Arduino uno - telemetry - cnt_sensor stays 0 #21
Comments
Hi jverhuls, Sorry for the late reply. I did not notice this was still an open issue. I looked into your problem and I think it is due to the Arduino Uno board. If you look at the schematics of the UNO board at https://content.arduino.cc/assets/UNO-TH_Rev3e_sch.pdf you see 2 resistors RN4A and RN4B that feed the Serial signal (TX/TX) to the onboard USB device. These resistors "fight" with the combined open collector signal towards the FS-ia6b. The 1k resistor RN4B is keeping the serial signal high (too close to +5V) while the Ibus library is trying to send information back by pulling your 1,2k or 4,7k resistor low. A value of 4,7k will never work. In case you are using an 1.2k resistor the digital high value will be +5V and the digital low value will be about +2.7V, which is not low enough for the FS-ia6b to recognise as a digital 0. There are 4 things you can try:
Let me know if this works. |
Hi, I found your reply very helpful. I also tried to use an arduino UNO and a FS-ia6b and faced the same issues when using a resistor. I hope this helps. |
I have an arduino uno and a FS-ia6b. I'm trying to send telemetry data towards my transmitter (and only telemetry data).
I'm using the code as is and the sketch Ibus_sensor.ino where i remove all the Serial.print and Serial.begin commands.
I have a wire like described (tested it with my multimeter if the resistor is working on the TX pin. I used TX on port 1 and RX on port 0 but I see no telemetry data.
If i'm using altsoftserial (on port 8,9) for debugging i see the cnt_poll increasing, but the cnt_sensor stays zero.
I tried with a 1,2K resistor and 4,7K resistor but non work.
Any clue on what I can try or what the problem could be?
The text was updated successfully, but these errors were encountered: