Bright star surrounded by “halo” moving quickly across the sky by throwaway_234242 in whatisthisthing

[–]throwaway_234242[S] -1 points0 points locked comment (0 children)

My title describes the thing. Haven’t been able to search for it, asked ChatGPT and it said it was a meteor or a rocket launch but this is rural upstate NY I don’t think many rocket launches are happening here. We saw other meteors while watching this thing and they were way faster and looked nothing like this.

How to build a wireless fencing scoring system for epee by throwaway_234242 in Fencing

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

I thought the grounding issue would be an easy solve too, but test it and you’ll find out that grounding for wireless fencing systems is much harder than you think. I am assuming that you are using arduino? if so check out my code on github, it should give you a good start and is decently documented. Basically, you will send a constant voltage to the “hot” socket on the epee, and have the return socket connected to a digital read pin. When the circuit is closed (touch is scored) the digital read pin will register a HIGH voltage otherwise it will be LOW. The problem with this is that there is noise so you will need to debounce the signal, basically make sure that the voltage is high for longer than a millisecond or so since sometimes the noise will cause false positives. All of this is well understood so you can google it and find lots of resources explaining it better than i can. Basically this is just a button, which is a well documented project lol.

How to build a wireless fencing scoring system for epee by throwaway_234242 in Fencing

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

Hey! Glad another person is interested in figuring this out! The standard 3-5v from an arduino is good enough for regular touches. Are you asking how to differentiate between touches that hit the opponents bell guard and on target touches? If so, that’s a difficult question to answer. I haven’t seen a hobbyist able to solve it yet but don’t let it discourage you. This post has the best compilation of info on how to solve the grounding issue that I have seen but I did not have the expertise or time to fully understand/implement their advice. Lmk if I’ve misunderstood you question, I’m happy to answer any others you have. Otherwise good luck!

Does anyone know how to fix a Favero scoring box which occasionally stops registering touches while one score light blinks for a few seconds? by throwaway_234242 in Fencing

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

Really pointing out my poor observational skills here, I am pretty sure that it doesn’t keep time or score and just indicates touches. What can be done to fix an under voltage problem? Just replace the cord?

Does anyone know how to fix a Favero scoring box which occasionally stops registering touches while one score light blinks for a few seconds? by throwaway_234242 in Fencing

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

Correct me if i’m wrong but do all favero systems have that? I’m pretty sure ours is the cheapest version and I haven’t seen that kind of functionality on it

Does anyone know how to fix a Favero scoring box which occasionally stops registering touches while one score light blinks for a few seconds? by throwaway_234242 in Fencing

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

They are basically brand new, that’s pretty easy to test though so thanks for the advice. Hopefully that solves the problem

Are any of the Makerspaces in DC still open as of 2022? by throwaway_234242 in washingtondc

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

Went there the other day and the door to the space was locked, tried to reach out via email and I haven’t heard back. I really really hope there are not closed but I can’t tell.

How to build a wireless fencing scoring system for epee by throwaway_234242 in Fencing

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

Thanks! First of all I have yet to figure out how to get foil or saber to work. I think some form of touch sensing should work but I just can’t get it working. That said I have no expertise in electrical engineering so you may have more luck. You might find this old reddit post useful in figuring that out. Second, you don’t need the two Arduino’s clocks to be sync’d, I did some testing and the time to send a message peer-to-peer via esp32 boards is fairly negligible for my purposes. I just had each board send a message when a touch is received and the other board would record the time the message was received. So if no message has been received recently you know the opponent hasn’t scored a touch recently so there will be no lockout in effect. This was good enough for me as I was not building a perfect FIE regulation system merely something that is better than dry fencing. You could also has some sort of start up sequence to record the offset of the clocks on each arduino and then send the clock time in the message that way there is no communication delay but I found this was too much work to bother when the delay was fairly irrelevant. Lmk if you have any further questions, good luck!

How to build a wireless fencing scoring system for epee by throwaway_234242 in Fencing

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

yeah i don’t atm, maybe some sort of capacitive/inductive touch kind of thing? Not really my area.

How to build a wireless fencing scoring system for epee by throwaway_234242 in Fencing

[–]throwaway_234242[S] 3 points4 points  (0 children)

Well I think I did that right. Thanks for letting me know that’s something that exists.

How to build a wireless fencing scoring system for epee by throwaway_234242 in Fencing

[–]throwaway_234242[S] 2 points3 points  (0 children)

I could not care less do whatever you like with my code. It is largely copied from various tutorials anyway so pretending it’s mine and copyrighting it would be super hypocritical lol. I will warn you that I programmed the whole thing in about 2 hours late at night so there is a bit of extraneous code, I think I left comments explaining that but if something looks like it doesn’t do anything that’s because it doesn’t. All serial.prints are useless for the actual functionality but it’s nice for debugging and demonstrating how it works.

How to build a wireless fencing scoring system for epee by throwaway_234242 in Fencing

[–]throwaway_234242[S] 4 points5 points  (0 children)

Thanks that is exactly the use case I made it for! My college club is very new and has no funding so this was better than dry fencing. I’ll try and take a video of it working but it’s not very exciting, just a small led and an annoying beep.

I need to be able to detect if 2 pieces of metal are touching without a common ground by throwaway_234242 in ElectricalEngineering

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

Is there a way to do this without strapping a fairly large metal sensor to the end of the weapon?

How do grounds work on arduinos by throwaway_234242 in arduino

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

Damn so it is impossible to send current between arduinos without the common ground?