Cameron Tacklind

Results 134 comments of Cameron Tacklind

These looks great! Thank you. I'd tried something similar but didn't find the right syntax. I'll give them a try later today.

I would vote for the "equal amount of ESC's present" feature to be optional. Sometimes I want to copy from one ESC to another and they many not be on...

Hmmm, I'm not following entirely. The (very) specific use case I'm (particularly) interested in is: 1. "Connect" to FC 2. Plug in ESC to FC 3. Flash known good settings...

@DimaGashko If you have some type definitions that would work, you can just add them to DefinitelyTyped yourself. However, the best would be a new minor version here that adds...

@DimaGashko I was thinking about this a bit today. It looks like TypeScript's Intersection Types (`&`) do the correct deep merging of the types, so this should work. I wonder...

The implementation that I think would be best would follow the practices of SSH. For each client that I want to connect from via SSH, I generate a public/private key...

@lurch that is a good point. I'm coming from the Node world where compiling and linking to C++ was a non-issue because Npm and `node_gyp` build the necessary binaries on...

This is a major issue for us. Our hardware is a button that is normally closed, which shorts an IO pin to `GND`. So `pull_up=True` is required for our hardware....

Yeah, this "button" is a safety button. If any of them is broken, whole machine needs to stop. So it needs to be normally closed. You're right that I could...

I took a stab at implementing a Component that wraps a `Slider` to provide logarithmic functionality with ease: https://gist.github.com/cinderblock/6f52313a06ad3f8bf0e0290826d1ef10 Not extensively tested but should work.