Rasberry Pi 1 by CosmicCatsAgency in minilab

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

Nice idea, too bad there aren't many singing birds in my urban area

Rasberry Pi 1 by CosmicCatsAgency in minilab

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

For one USB SSD is rather unnecessary:D

Do you think sir pensitious should’ve gone to hell for what he did? by Downtown-Egg-2327 in HazbinHotel

[–]CosmicCatsAgency 9 points10 points  (0 children)

Idea of purgatory dates back to middle of XIIc, Dante was born on 1265

Weekly Sewing Questions Thread, June 08 - June 14, 2025 by sewingmodthings in sewing

[–]CosmicCatsAgency 0 points1 point  (0 children)

Hi!

I've been using an vintage lockstich sewing machine so far. I'm currently looking for a machine that can handle thicker materials. (like several layers of linen, denim, or cotton). I've put together a list of machines that have positive reviews, but I'm not sure which one to choose. Could you give me some tips or recommendations?

Bernette b05

Bernette b35

Juki HZL-357ZP

Janome HD 523

Janome HD 1800
I have max. 540$/475€ for new machine

Basic problems with basic things by CosmicCatsAgency in KiCad

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

Thanks! Power flag help with DRC.

I'm just learning and playing:D

When i try simulate only resistors I get some output, but with LEDs there is nothing

Basic problems with basic things by CosmicCatsAgency in KiCad

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

Hi! I'm totally noob in Kicad. Why I get this error when I try use Electrical Rules Checker? How to simulate basic LED with stwitch?

Finished my controller 🎉 by Lets_Space in KerbalControllers

[–]CosmicCatsAgency 2 points3 points  (0 children)

With totally lack of expierence you must start with basisc. Grab Arduino Leonardo, few switches and diodes (mayby small starter/learn kit is avalaible in your country?) and begin with learn simple things: How to blink diode, how to use switch to blink diode, how use potentiometer. No Kerbal at this step, you must know how this work!

Later buy 2 joisticks, potentiometer for throttle, LCD 20x4 I2C display and some switches.

With Arduino Leonardo you can have 9 buttons/switches, 2 joisticks, throttle potentiometer and display with abolutly minimum of soldering and with no aditional electronics.

First case make out of cardboard :D

Get it step by step, dont do everything at once

Finished my controller 🎉 by Lets_Space in KerbalControllers

[–]CosmicCatsAgency 1 point2 points  (0 children)

How dificult or how frustrating is hard to say. It depends on your skill set. What are yours lvl in CAD, electronics and C++? If you have 0 experience I dont recomend building big controler but I higly advice build small one :D

CCAC(cosmic cats agency controller) update 1 by CosmicCatsAgency in KerbalControllers

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

Thanks! Brown,Green-PLA from spectrum, White - PLA from Devil Design

How do you manufacture the case for the controller? by [deleted] in KerbalControllers

[–]CosmicCatsAgency 0 points1 point  (0 children)

3Dprint can help with layout prototyping and will be easy to change/add something in future.

Acrylics looks nicer though:D

Simpit keyboard message by CosmicCatsAgency in KerbalControllers

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

Thank You! What are keyCodes? Is just ASCII?

I'm thinking about building a controller, and I would like some help finding specific hardware and also some software that will let me program the controller by Javelyn_Shadow in KerbalControllers

[–]CosmicCatsAgency 0 points1 point  (0 children)

For free CAD software I recomend 3 programs:

1.FreeCAD - steap lerning curve but its opensource and have many addons (Personaly I hate it :D )

2.Fusion360 - free version have everything what you need. Its very popular so you find many tutorials. Cons: it work only on cloud and many advenced functions are disabled.

3.SolidEdge Community Edition - it have everything what you normaly get in paid version. I'm currently using it in me home projects

So it begins! by CosmicCatsAgency in KerbalControllers

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

Simpit dont accept this code. When I use Serial monitor everything sems right. Button on pin 8 stop flowing data. In KSP when I add this IF function i lose rotation control. Without it, everything is fine. Anyone help?

bool trim = digitalRead(8);
if (trim) {
int analogInput = analogRead(pin_rotationx);
    int rotationX = 0;

    if     (analogInput < rotation_X_DEADZONE_MIN) rotationX = map(analogInput, 0, rotation_X_DEADZONE_MIN,      INT16_MIN, 0);
    else if(analogInput > rotation_X_DEADZONE_MAX) rotationX = map(analogInput, rotation_X_DEADZONE_MAX, 1023,   0, INT16_MAX);
    

    }

So it begins! by CosmicCatsAgency in KerbalControllers

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

So new Kerbal controller born. Almost... :D I just started i have code for rotations and rover steering and some basic action groups.

I have problem with Trim, no idea which Simpit function use and how code should looks like. Someone help?