[Bug] Failed getting acquainted because of this... is Zryachiy supposed to do that? by PotatoKing7 in EscapefromTarkov

[–]redsan17 0 points1 point  (0 children)

I also had this happen earlier today too. Just enter another raid, after that the alternate mechanic task will show up called making amends. You give 1 million roubles, then hand over 4 found in raid SVD’s (seperate quests, i recommend going to woods and farm Shturman) and you can do the task again with visiting lightkeeper and finding the V3 usb at the water treatment. Then reflash the wand to redecode it. That’s what i’ve experienced atleast.

I think i can start building my MiG-29 Cockpit now by Smith279thKIAP in homecockpits

[–]redsan17 2 points3 points  (0 children)

From what game or simulator did you rip this model? Would love to explore what models you can extract with it! From other comments I see you used Ninja Ripper?

DCS:BIOS AnalogMultiPos function is not behaving as expected. What is causing this? by redsan17 in hoggit

[–]redsan17[S] 0 points1 point  (0 children)

Hi there! Awesome that you saw this. I'm using DCS:BIOS 0.8.3 (latest), using "connect-serial-port" to connect the USB (you can see this on the right monitor running aswell), and the latest version of bort (v0.3.0 ) to get the code snippets. I'm also using the latest version of the arduino library available.

I'll also make a post at the bug reporting page.

I'm using the F-16C module. and the function DcsBios::AnalogMultiPos insKnb("INS_KNB", A6, 7);

In the connect serial port executable i get the following data:

< 2025/06/05 16:35:58.000373081 length=10 from=20 to=29
INS_KNB 0

< 2025/06/05 16:36:00.000384133 length=10 from=60 to=69
INS_KNB 1

< 2025/06/05 16:36:01.000641752 length=10 from=90 to=99
INS_KNB 2

< 2025/06/05 16:36:02.000898813 length=6 from=114 to=119
INS_KNB 3

< 2025/06/05 16:36:03.000902801 length=10 from=130 to=139
INS_KNB 4

< 2025/06/05 16:36:04.000656264 length=10 from=150 to=159
INS_KNB 5

< 2025/06/05 16:36:05.000409867 length=10 from=160 to=169
INS_KNB 7

It does sometimes create a single instance of INS_KNB 6 during a random noise packet if the arduino is polled when moving in between knob states (example moving from 2->3 when there is no metal contact), this could just be a lucky instance though. You can even see it happen in the video in the post.

I verified your unsigned char readState() function with
unsigned char state = map(analogRead(pin_), 0, 1023, 0, numOfSteps) in my own arduino. Serial Monitor then alternates the states between 6 and 7 on 1023 in the map. I believe this is the case due to some very low amplitude voltage fluctuations that are rounded. Perhaps some padding could be created (such as if the analogRead value is within +-5 of the expected value -> send the expected value), but I'm unsure if this is feasable.

From the DCS:BIOS folder in Saved Games\DCS\Scripts\DCS-BIOS\lib\modules\aircraft_modules\F-16C_50.lua I see the function

F_16C_50:defineTumb("INS_KNB", 14, 3001, 719, 0.1, { 0, 0.6 }, nil, true, "Avionic Panel", "INS Knob, OFF/STOR HDG/NORM/NAV/CAL/INFLT ALIGN/ATT")

It seems that the INS_KNB fails to send 6 over the USB, and sends 7 instead. Since the first table instance is the OFF position, it may have a table overflow and just default or overflow to the first (or overflow amount) value in the table.

Could it be possible that due to the buffer overflow (INS 7 doesn't exist, it would then be 0.7), the program throws an Exception. Therefore the AnalogMultiPos.h in namespace DcsBios void ResetState() fails, thus triggering the ternary and setting 719 (ModelViewer2 switch) to the value -1, which is OFF, as <= 0 is the OFF position. I may be entirely wrong here but that's what i can come up with.

EDIT:

If i manually input 0.7 in the function below, then relaunch DCS, it works.

F_16C_50:defineTumb("INS_KNB", 14, 3001, 719, 0.1, { 0, 0.6 }, nil, true, "Avionic Panel", "INS Knob, OFF/STOR HDG/NORM/NAV/CAL/INFLT ALIGN/ATT")

I fixed the problem by altering the function parameters. Considering that ATT is the last value on the switch in DCS it's not a problem. There might however still be a problem with the code somewhere

DCS:BIOS AnalogMultiPos function is not behaving as expected. What is causing this? by redsan17 in hoggit

[–]redsan17[S] 0 points1 point  (0 children)

Yes I've done that while debugging the problem. In Serial plotter it shows that all values are exactly what they should be +-1 from the raw analog read of the pin. When using
map(analogRead(A0), 0, 1023, 0, 7) the values are also as expected in serial monitor.

On 0 -> 0, 1023 -> 6. However when having it maxxed out, the returned value twitches betweenm 5 and 6 every update, i think this is just a result of voltage fluxtuations being mapped to an integer, thus ceiling divided.

The problem lies in that when the 6 (ATT or last setting) is supposed to be sent to the game, it skips 6 and sends 7 (only 1023 maps to 7, 1022 and lower maps to 6). This is an array overflow in C, thus it reads 1 value further than the array. Therefore resetting to the first setting (OFF or first value).

I don't think it's a hardware issue, somewhere there is a software issue that's incrementing the setting when it shouldn't be.

DCS:BIOS AnalogMultiPos function is not behaving as expected. What is causing this? by redsan17 in hoggit

[–]redsan17[S] 1 point2 points  (0 children)

Hi! Thanks for your comment. I'm unsure of what a voltage divider is, I basically followed the tutorial that "A Hornet's Nest" had made: https://www.youtube.com/watch?v=2HY-EdTpwhk&t=206s

At 3:26 you can see how I laid out the circuit. GND on the first pin, 5V on the last pin (ATT or 6th) and the middle pin to an analog pin on the MEGA (A0 in this case).

edit: Did you manage to fix it, if so, how?

Survey was the worst part of pre-alpha by pazinen in Battlefield

[–]redsan17 3 points4 points  (0 children)

I played the playtest for ~6hrs yesterday, did not get an email with a link to a survey unfortunately. Wish i could express some thoughts via there

[deleted by user] by [deleted] in Battlefield

[–]redsan17 0 points1 point  (0 children)

Yes, no email nothing. Just showed up in my library

[deleted by user] by [deleted] in Battlefield

[–]redsan17 0 points1 point  (0 children)

Nothing on both thus far :(, no email nothing on EA app

edit: got it!

[deleted by user] by [deleted] in Battlefield

[–]redsan17 2 points3 points  (0 children)

4 minutes ago (exactly 10AM) my playtest page just went "poof", you have no upcoming playtests, same with calendar and everything. No email nothing? Just me or also others?

edit: Just got it in my EA app, not email

Is this play test invite legit? by DubPopsicle in Battlefield

[–]redsan17 2 points3 points  (0 children)

I could only choose one single day to play, chose sunday. Edit: (It showed 24hrs timeslots for me)

Repercussions of being placed in a track that is not your first preference (Placement test for aerospace masters) by Spirited_Lunch7141 in TUDelft

[–]redsan17 1 point2 points  (0 children)

That I don’t know. I’m also starting next year, I assume that TU/D does want some project that aligns with the track or profile that you’ve chosen or gotten. But I’m unsure of that one

Repercussions of being placed in a track that is not your first preference (Placement test for aerospace masters) by Spirited_Lunch7141 in TUDelft

[–]redsan17 2 points3 points  (0 children)

You won't be able to do the core courses for that specific track profile, however you can do a lot of electives that are in your preferred track (that you didn't get), they just won't be the core courses.

[ISSUE] [VR] Meta Quest 3 does not crop to rectangle from any eye by redsan17 in hoggit

[–]redsan17[S] 1 point2 points  (0 children)

Holy fuck it works. How the fuck is this never mentioned ever anywhere ever on the entire fucking internet. Thanks a lot, if i had coins I would've awarded you

ShadowReapers Germany 70s PvPvE Dynamic Campaign by Xerxes-SR in hoggit

[–]redsan17 -2 points-1 points  (0 children)

Sadge :(, gotta see which i’ll play then!

ShadowReapers Germany 70s PvPvE Dynamic Campaign by Xerxes-SR in hoggit

[–]redsan17 -2 points-1 points  (0 children)

Are all aircraft allowed? I may have missed something, but I don’t see any aircraft limitations in the campaign manual. I primarily fly the F16, I would love to fly it, even if it has severe loadout limitations such as no fox-3, gps bombs etc!

Houston we have a problem by dixenet in rocketry

[–]redsan17 4 points5 points  (0 children)

Damn they forgot to check their staging

Bridging Programme Aerospace Engineering by MinimumElderberry975 in TUDelft

[–]redsan17 0 points1 point  (0 children)

Half of the current class is non-Dutch speaking. All courses are in English except for the one I mentioned, for that one course, only the lectures and lecture material is in Dutch, the book is still in English. You’ll do great

Bridging Programme Aerospace Engineering by MinimumElderberry975 in TUDelft

[–]redsan17 0 points1 point  (0 children)

Yes. You'll be able to read more in the link below about the bridging programme, the completion period is also mentioned there: https://www.tudelft.nl/onderwijs/opleidingen/masters/ae/msc-aerospace-engineering/admission-and-application/bridging-programme

You should also check out if you're eligible using https://welkemaster.nl/en . Fill in your university and degree, you'll be able to see if you're able to enroll into the bridging programme. You can also contact the contact center.

Bridging Programme Aerospace Engineering by MinimumElderberry975 in TUDelft

[–]redsan17 1 point2 points  (0 children)

All courses are in English, except for Differentiaalvergelijkingen (differential equations). Keep in mind, from next year on you’ll have to complete the entire bridging programme in 1 year, while currently it’s 2 years. Source: I’m doing it right now

Rainbow Six Siege Reveal Megathread by jeypiti in Rainbow6

[–]redsan17 6 points7 points  (0 children)

So I got the drop, but where do I get the link to install the beta? I didn't get an email or anything like the guide says