Jump to content

MrOnak

Members
  • Posts

    364
  • Joined

  • Last visited

Reputation

51 Excellent

Profile Information

  • About me
    Sr. Spacecraft Engineer

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

  1. I believe my question is similar to the one by miklkit above, with a twist. I've placed ground pylons in KSP stock inventory slots by accident (the one with the bigger icons). They seem to be utterly useless there since they're too high in volume to be placed into the stock inventory of my Kerbal. Is there an in-game way to transfer them from there into a KIS inventory? Either directly or via intermediate steps? Alternatively, is there a way to move them from the stock inventory to a KIS inventory at location? Yes I could probably hack the quicksave file but I'm genuinely interested if there is an in-game fix for my stupidity
  2. @lemon cupthanks for the fast reply. Good to hear that I'm not missing something obvious I found it odd that FFT adds these engines without a solution to use them that isn't a mile-long stack of trusses with vanilla radiators, hence the question Thanks again!
  3. Hi all, I've installed Far Future Tech but I found it practically impossible to cool the parts, so I installed Heat Control as well. Now it's doable. I'm just curious whether or not I'm missing a trick here?
  4. I'm afraid I might be a little dumb. I've installed TAC LS and my PPD Hydroponics module doesn't seem to generate food? I can start / stop the greenhouse but that doesn't change the prediction of TACLS on how long the food will last. does the greenhouse have to be manned in a certain way? I tried Scientists and Engineers but that didn't change the numbers either. I've tried switching all the resource cyclers in the utility module that is on the station on/off as well but none of the numbers change. Any hint would be greatly appreciated.
  5. @lemon cup and @tangle thank you. I was hoping there are docking ports that visually integrate seamlessly into the aesthetic, too bad but then I can stop looking :)
  6. This is bound to be asked somewhere in this thread but my search skills have failed me. Are there parts in this mod that have integrated docking adapters? I'm aware that the stock adapters have been reskinned but I'm looking for large skale adapters to fit the wider station parts and provide a proper connection that can withstand the torques.
  7. Hi everyone, it's been a long long time. I need help. My KSP MKS 1.4.5 playthrough has now finally reached the point where I want to go on a Grand Tour and turn Kerbals into a multi planetary species. For that I want to set up a Karborundrum farm on EVE to fuel my not-at-all-oversized mothership. The goal are autonomous miners with 4 Automated Industrial Strip Miners on them and a orbital logistics setup to get the Karborundrum into space. I can't for the life of me figure out how to cool the Automated Industrial Strip Miners from USI. I've tried - attaching the Strip Miners to Kontainers and then Radiator Panels to the Kontainers (both the Radiator Panels and the Thermal Control System (large)) - attaching the Strip Miners to various other parts and then Radiators to those => the type of part the Strip Miners are attached to doesn't seem to make a difference. I've now settled on attaching the miners to TweakScaled structural fuselages for ease of attachability / weight. - having a Miner without a Nuclear Reactor since I thought the 1000k core temperature of the reactor maybe affects the 500k optimum of the Strip Miners but that is not the case. They overheat just as fast when my power comes through Microwave Power Receivers. - with the reactor back on the mining vessel I tried insulating it from the rest of the craft with a Heat Shield (long shot, but again asuming the reactor core temp affects the rest). Again this doesn't help, not that I expected it to. - Using the 'Ranger' Thermal Control System (lots of them) instead of the stock radiators but they're simply not transfering enough heat and they're somewhat hard to attach to the kind of layout I have on the miner. By now I'm running out of ideas. I do have a working MaterialKit / Machinery farm on Mun with perfectly cooled MEU-500-A Pulse Drills so I believe I do understand the basic mechanics. With the Karborundrum miner I can run it with one separator on each of the four drills and it won't overheat. Activating the other separators makes it go above optimum temp. The "cooling" readout on the radiators is constant at around 16%, no matter how many separators are active or if the Strip Miners are running at all -- there's a change of around 0.2% in the cooling percentage readout but it doesn't seem to reflect the actual heat output of the Strip Miners. All tests were done with the Strip Miners configured for dirt and on the KSC launchpad. Environment is KSP 1.4.5, Karbonite 0.12.0.0, MKS 0.55.0.0. If anyone has working Miners I'd love to see them, or a general explanation how the cooling is supposed to work. For reference, my current variant of the craft file is public. Other than the USI mods, you'll need TweakScale, probably nothing else. Control group 1 activates all the things. Many thanks in advance. o7
  8. The design was done with Inkscape. I ordered it from the first "custom dibond" result on google
  9. I think you still have a few options here. First, you could ditch the TM1638 - although I see its charm - and chain all 7 segments and LEDs over SPI. 5 pins total, plus whatever is needed to run the LCD. Second, there are analog-to-digital converter chips which are addressable over SPI. That way you'd get ADC without using more pins. The MCP3208 is one example that gives you 8 analogue pins over SPI. But then I don't think the analogue pins are your problem? Third, I mentioned this already, if you need more digital inputs, the 74165 family of chips gives you those, over SPI. Again, no additional pins required once you have SPI set up. Fourth, I really like the idea of communication between Arduinos and it will be possible if you have the pins for the rest. That said you could perfectly well ditch the idea of having the 2 arduinos talk to each other and run them independently. Sure, KSP can only talk to one of them but you can make the other one be recognized as an USB joystick using VUSB: http://www.obdev.at/products/vusb/index.html - I've done exactly that and have a single microcontroller run 6 analogue axis and something in the order of 60 buttons. My computer thinks its a joystick/keyboard combo-device. You'll actually find my code in the VUSB forums. KSP has no idea that microcontroller even exists - the one "my" KSP talks to only handles a few buttons through a R2R ladder config and lots and lots of outputs. If you click the link in my footer I hope my initial post does a decent job of describing my approach. All that said, I really hope you find a way to pull this off. It'd be awesome. Free those pins!
  10. I just found this: http://arduino.cc/en/Reference/SPISetClockDivider Seems the default is 4Mhz, or 500kbit per second. However you might want to check the maximum ratings on the receiving end of the connection to avoid some nasty debugging (not an issue with the 74595s).
  11. SPI sends one byte at a time by definition of the protocol but as usual you can make up your own "protocol" (big word for that) quite easily if you know what comes when. the KSPSerialIO communication between KSP and the microcontroller itself isn't much else tbh.
  12. hardware SPI is orders of magnitude faster, I remember 400kbps or something, but I might be wrong Oh and about the money: A 74595 costs around 30 cents in a local shop, much less if you order online. buy one and see what it does for you.
  13. @Psycho80: You can use really cheap ICs 74HC595 or 74HCT595 to expand your output ports. They are addressable over SPI and you'll need only a fixed number of pins (4 for output-only) on your arduino, no matter now many ICs you're addressing. Each 74595 will add eight output pins and you can chain them together. I'm using 6 of them chained together to give me 48 outputs to drive 37 7-segment displays and 30 standard-LEDs in my work-in-progress controller. Soon I'll add another two 74595s for another 10 LEDs. All that requires 4 pins on the microcontroller. There's a schematic in the thread linked in my footer. Note that the 74595 provides only outputs. If you need inputs the 74HC165 is your friend. It works pretty much like the 74595 but provides 8 inputs per chip. And yes you can chain the 165s and the 595 together pretty much endlessly, requiring a fixed 5 pins (you need one more for the input line, which you don't need for output-only operation).
  14. Looks like the effort required to do what I had in mind is not worth the result. I welcome my new 46-case switch-statement overlord! :-( In other news @Zitronen, the config.xml file has ThrottleEnable set to 2, which seems to require a "throttle-off" ("x" key) upon launch, in order to make the hardware throttle actually able to put the throttle in game to zero. Without the "x" the game throttle simply jumps back to the 50% that it was at launch when the hardware throttle goes to zero. I've changed the ThrottleEnable to 1, which seems to work better.
×
×
  • Create New...