(Part 3) Top products from r/starcitizen

Jump to the top 20

We found 46 product mentions on r/starcitizen. We ranked the 549 resulting products by number of redditors who mentioned them. Here are the products ranked 41-60. You can also go back to the previous section.

Next page

Top comments that mention products on r/starcitizen:

u/Oddzball · 3 pointsr/starcitizen

The Arduino generic Game Controller provides the following:

X, Y, and Z axis
32 buttons
X, Y, and Z axis rotation
Rudder
Throttle
2 Point of View Hat Switches

So you can actually make your own controller relatively easy, and even have things such as a few Pots for trim adjustment, or simple buttons too.


Instructions on how to program and set up the microcontroller;

http://www.instructables.com/id/Arduino-LeonardoMicro-as-Game-ControllerJoystick/

Soldering tutorials;
https://www.youtube.com/watch?v=J5Sb21qbpEQ&list=PLNEAKeawWr2wiTBpoUUXdeRGnpqFUNhwP&index=4
https://www.youtube.com/watch?v=fYz5nIHH0iY&list=PLNEAKeawWr2wiTBpoUUXdeRGnpqFUNhwP&index=5



Parts list;

http://www.amazon.com/Arduino-ARD-A000059-Micro/dp/B00AFY2S56

http://www.amazon.com/Joystick-Analog-Stick-Assembly-Replacement/dp/B00170JDZU/ref=sr_1_1?ie=UTF8&qid=1450210079&sr=8-1&keywords=psp+joystick

And whatever the heck you build it with. Soldering is easy as pie, and some wire from whatever.

You could do a complete "Keyboard" if you will with this single Microcontroller.

Momentary Toggle switches, Regular buttons, 3 axis controls, and like i said, even a set of 3 pots for something like trim adjustment or whatever.

I highly recommend getting a breadboard, which you can simply plug and play everything in to test out your circuit and design, and then getting a perf board of some sort for the final layout.

UPDATED: Apparently there is software out there that completely removes the need for you to know how to code, provided by /u/foofad please see the following post. honestly, this just got even easier.

http://simhq.com/forum/ubbthreads.php/topics/3899105/MMJoy_-_Build_your_own_USB_con

u/SharkOnGames · 2 pointsr/starcitizen

I picked up this monitor late last year and it's been amazing. I no longer need 2 monitors on the desk.

https://www.amazon.com/gp/product/B0777RY75V/ref=ppx_yo_dt_b_search_asin_title?ie=UTF8&psc=1


I have a 4k TV, but prefer gaming on the 3440x1440p ultra wide, it just feels nice thanks to the wide view.


I bought it before upgrading my PC thinking I'd rather have the monitor in place and then the hardware to support it later rather than buying new hardware and being stuck with a smaller monitor at 1080p.


It's native 100hz and can overclock to 120hz plus works great with gsync (nvidia). It completely changed how games play, especially FPS games.

u/JectorDelan · 2 pointsr/starcitizen

If you're comfortable with MnK, I'd say stick with it. Currently, aiming with a stick can be tricky without a good controller and a lot of practice. Mouse is much more accessible. I'd try that for a bit and if it feels unfun, look into getting a flight stick.

You may want to find a mouse with a decent number of buttons to take some of the burden off of the keyboard hand. I use a Logitech G700 which for me has a nice number of easily accessible buttons without having too many to differentiate between them in the heat of battle. It also spreads them out between the index and thumb, something you don't see with many mice which tend to leave it at the left button, scroll wheel, and maybe an extra button. It can be wired or wireless, whenever you need. About 60 bucks.

https://www.amazon.com/Logitech-G700s-910-003584-Rechargeable-Gaming/dp/B00BFOEY3Y

You could also try a good throttle to give a little immersion. Just get one with a decent number of buttons as SC has many functions. I can't direct you to a good one here as I don't have a throttle.

Another possibility is a Nostromo style keypad. I've used one for years now back from when Belkin made their first iteration of it. Razer currently has the rights, which is unfortunate, but I am liking my new Orbweaver so far. The palm rest greatly helps with extended gameplay for us old dudes and the Orbweaver has decent adjustability to where it and the thumb assembly sits. Completely programmable for single buttons or macros, I've found them indispensable for long game sessions. Orbweaver is about 130 currently.

https://www.amazon.com/gp/product/B013P0HW7K/ref=s9_acsd_hps_bw_c_x_6

There's also a program for tablets and smartphones where you can assign game functions to a UI. I haven't looked into that yet, but it could be a pretty nice little addon if you already have some form of tablet device.

u/Alaeron · 5 pointsr/starcitizen

After seeing a couple posts of people's custom button boxes on reddit I knew I had found my next project. I've been doing quite a bit of Arduino and small electronics lately, and this was the perfect fit. So off I went to Amazon, ordered a bunch of stuff I thought might be cool / useful and started piecing things together. Took a few weekends of working on it here and there, the most time consuming part just being tediously soldering and wiring the 38 inputs.

​

Was originally going to set it into some sort of project enclosure, but ended up getting impatient and just mounting it to two pieces of plywood with some feet. It added enough heft to it that I can lift the switch guard and rotate the somewhat stiff selector without issue. Eventually I'll get a better enclosure for it, probably grab one off of Hammond mfg or get someone with a larger 3D printer to make one. The Engine Start and black/red button (that I'm going to use for quantum jump) have leds in them that I don't currently have hooked up to the Arduino, but once we get some sort of API into Star Citizen hopefully I can tie them to engine state and jump spool/ready state.

​

The controls are:

Power on, flight ready, 3 misc buttons, zoom rotary encoder, 3 misc buttons, quantum spool, quantum jump

Hat switch + center for shield distribution and reset, engine, shield, and thruster power switches, power distribution profile selector, misc selector

Flare Fire button, flare select, 7 misc toggle switches, self destruct switch, eject switch.

​

I mapped everything to a button in the Arduino code (no rotary encoder as zoom in this screenshot) so that I can easily bind to functions in Star Citizen. Unfortunately without an API this means the switch positions can get out of sync with the actual ship status easily. If by the time of release / they make an API there still isn't a way to read / set state by API then I'll probably make a new version with only toggle buttons.

​

Code Libraries

PCF8574_library for interfacing with the IO expanders
- https://github.com/xreef/PCF8574_library

ArduinoJoystickLibrary for emulating a joystick on windows
- https://github.com/MHeironimus/ArduinoJoystickLibrary/

​

Useful Instructables

Joystick Library
- https://www.instructables.com/id/Create-a-Joystick-Using-the-Arduino-Joystick-Libra/

PCF8574
- https://www.instructables.com/id/PCF8574-GPIO-Extender-With-Arduino-and-NodeMCU/

​

Parts List

1 Terminal Expansion Board - https://www.amazon.com/gp/product/B07PGDWJ2V

3 PCF8574 IO Expansion Board - https://www.amazon.com/gp/product/B07B95LMLQ

1 Rotary Encoder - https://www.amazon.com/gp/product/B07DM2YMT4

1 4 Position Rotary Selector - https://www.amazon.com/gp/product/B07JN2967L

1 Red Ring Momentary Push Button - https://www.amazon.com/gp/product/B017ILTX60

1 Engine Start Momentary Push Button - https://www.amazon.com/gp/product/B07MK2394L

5 Heavy Duty Toggle Switch - https://www.amazon.com/gp/product/B078KBC5VH

1 12 Position Rotary Switch - https://www.amazon.com/gp/product/B074WMC9C8

1 5-Channel Rocker - https://www.amazon.com/gp/product/B07K5PFPNC

1 Arduino Micro - https://www.amazon.com/gp/product/B00AFY2S56

7 Red/Black Momentary Push Buttons - https://www.amazon.com/gp/product/B07BD2D96W

2 Red Cover Toggle Switches - https://www.amazon.com/gp/product/B07BD2D96W

8 Small Toggle Switches - https://www.amazon.com/gp/product/B013DZB6CO

u/Integrals · 1 pointr/starcitizen

You link and old version sold by a 3rd party as am example for price? Give me a freaking break.

The g13 isn't nearly as comfortable and has very mushy buttons when compared to an Orbweaver. Not to me to mention the Orbweaver is full RGB back lit.

http://www.amazon.com/Razer-Orbweaver-Chroma-Mechanical-Gaming/dp/B013P0HW7K/ref=sr_1_1?s=pc&ie=UTF8&qid=1450137048&sr=1-1&keywords=razer+orbweaver


These pads are awesome and well worth the 60$ higher sell price over a g13. So freaking comfortable and more buttons that are easily accessible around your left hand. I'll take (8+5)more buttons over an analog stick any day.

As far as the LCD screen. Are you seriously going to take your eyes off the screen to glance down at some stats. All useful information will be shown ON your HUD.

That being said, if you REALLY wants this feature, there are apps for your phone which loom 100x better.

You need to chill out, you are acting like these pads murdered someone you cared about.

u/Zispinhoff · 2 pointsr/starcitizen

You might want to try the Lexip Pro 3d while you're at it. Out of production, but it's not overly hard to obtain still.

I'm technically a HOSAS user, but I dabbled a bit with this mouse. My big complaint is that the buttons aren't really in a comfortable place. Other than that, it's a neat product.

Still though, thanks for the great link! I think I'll back this.

u/nonsensepoem · 4 pointsr/starcitizen

In the States you can get it on Amazon here or here. I'm not sure what's available in Europe, but maybe Amazon will ship to you.

Edit: They're physical copies, sure, but it's better (for CR, who deserves his cut) than torrenting.

u/Tumbler · 3 pointsr/starcitizen

I was hoping they'd have these config controls as well. I'd like to be able to keep the mouse on head tracking as in the hangar and pilot the ship with either the keyboard of one of those game pad things. Maybe even a 3d mouse like this.

u/ExedoreWrex · 2 pointsr/starcitizen

They are AMAZING. They adjust in every direction I need them to and have allowed me to perfectly align my monitors. They have also just dropped in price by three dollars. I have zero complaints about them. You will notice that there are two openings in the plate just behind the two arms that connect to it. I used the upper hole to bolt the reinforcement plate to the stock VESA mount on the left and right monitors as these mounts are a little too short to use both bolt holes on the arms. The top arm bolt was then attached to the reinforcement plate. You will also have to remove the plastic cap at the end of the upper arm as it will not fit with this bolt in place. I just added a new picture to the album so you can see what I am talking about.

http://www.amazon.com/gp/product/B003O1UYHG/ref=oh_aui_detailpage_o04_s00?ie=UTF8&psc=1

u/BrewMagoo · 3 pointsr/starcitizen

Yes, the books (by James S.A. Corey) are much easier to get in to and help when watching the show. Here is the first book: Leviathan Wakes (The Expanse Book 1).

u/sohnvonharvey · 2 pointsr/starcitizen

I was considering mapping the pedals to roll/speed brake/boost but I'll try a lot of different mapping configurations. If there is an FPS lean, those are going on the pedals with sprint/crouch. Strafe is going on the 4-way HAT near my index finger.

I was also looking at the ROCCAT Tyon mouse because it has a lot of interesting buttons.

I know my setup would break the immersion to a lot of people but I want access to all the important stuff without taking my hands off the controls.

u/7rounds · 1 pointr/starcitizen

"Imagine a space flight sim where you can control your craft with perfect analog precision..." That RAT's strafing axis is nice, but, I don't think I will go for it because the one I'm using right now has enough to strafe in any direction. The mouse that I linked to has 4 axis on it and it actually works real well, plus, it's out now.

u/bar10dr2 · 1 pointr/starcitizen

Looks like Amazon is having a sale right now?

https://www.amazon.com/Kingston-120GB-Solid-SA400S37-120G/dp/B01N6JQS8C/ref=sr_1_5?s=pc&ie=UTF8&qid=1536688814&sr=1-5&keywords=ssd

30USD for 120Gb, that's a pretty good price

According to the reviews its not the fastest SSD but much faster than a mechanical drive.

u/th3st0rmtr00p3r · 6 pointsr/starcitizen

Walls

u/TerranCmdr · 0 pointsr/starcitizen

I have a SpaceNavigator but as of yet have not been able to get it working in AC. To be honest, the drivers for it are pretty bad.

u/ValkyrieCry · 4 pointsr/starcitizen

http://www.amazon.com/Saitek-102989-Cyborg-Evo-Joystick/dp/B0000AW9P1
I've been using this for a little while. Sadly anything I fly it with leans to the left. I tore it open in attempt to fix it and it lays in pieces currently. For the small cost I got it at I enjoy it. I'm not into the entire hotas setup. Small and efficient gets the job done.

u/dace · 3 pointsr/starcitizen

Unfortunately it's not readily available at retail, and none of the usual online distribution platforms have it.

If Amazon is an option for whatever country you're in, they usually have copies. It's $19 US with free shipping on amazon.com right now:
http://www.amazon.com/Freelancer-Jewel-Case-Pc/dp/B000NJFMR4/

u/sigurdz · 4 pointsr/starcitizen

He's written a book about it. And I'm fairly certain he advised them on 100% of everything that had to do anything with science.

u/Reficul_gninromrats · 2 pointsr/starcitizen

Not on a magnetic button shirt where the buttons are pure decoration. Notice that the left side is still on top as it should be with a mens shirt

u/RC-Plorer · 1 pointr/starcitizen

This one is really good, but I'm not sure whether it's in Canada or not...
http://www.amazon.de/K%C3%B6nig-Defender-Cobra-Joystick-schwarz/dp/B00IJ72TMI

u/RiSC1911 · 1 pointr/starcitizen

One of the Bibles of PBR was first published in 2004, i have a copy of it here at home. It's available on Amazon

I think i saw the first discussions on the NVIDIA Developer site around 2000. Long before use in games and adaption into shaders it was widely used in traditional non realtime render software.

u/lovebus · 1 pointr/starcitizen

I can't find the one I have for some reason, but this is very similar. I have a Vizio.

u/surfmaster · 7 pointsr/starcitizen

Just pointing out that you can get a decent quality SSD with more than enough space for SC and a couple more games for $20 or less

u/TheDarkestStig · 1 pointr/starcitizen

This is the one I bought. Essentially one of the cheapest ones I could find that had a flat mounting plate: https://www.amazon.com/gp/product/B003O1UYHG/ref=oh_aui_detailpage_o01_s00?ie=UTF8&psc=1

u/Piccio7 · 1 pointr/starcitizen

This one is the earlier version

Also take a look at this one (same version but without display)

u/ventorvar · 1 pointr/starcitizen

An Alienware AW3418DW. I'm a big fan, although SC has some bad UI issues with 21:9 resolutions right now.

u/ActionPlanetRobot · 1 pointr/starcitizen

False. Wormholes are NOT in anyway related to black holes. They don't have their own gravity or destroy matter, light can freely pass in or around them and there's no "event horizon" of which you cannot escape from. I suggest you read The Science of Interstellar

u/PacoBedejo · 4 pointsr/starcitizen

Logitech G700s. Battery lasts all day, no cords to mess around with, and no discernible lag, even playing very frenetic twitch games. It's a large, heavy mouse, though, so give it a pass if you're a small person. As a very tall, fat guy, I cannot speak to the experience a mere mortal might have with it. :P