Jump to content

RandleMcmurphy

Member
  • Posts

    57
  • Joined

  • Last visited

Everything posted by RandleMcmurphy

  1. It says in the manual that the fans are under automatic control. see page 73, ...this should be independent of the operation system?
  2. Hey, nice progress so far, I'm digging the beard, its nappy and very cool. you have taken an idea and turned it into a concept, this is something not many people have the patience for, so for that *thumbs up*. this forum is also full of... not so nice folks, so over looking previous comments.... I think this is a really cool idea. Darpa or nasa would really get a kick out of using both the index fingers and the thumbs interdependently. Asking random nerds, on a form, to build a controller I fear is a waste. I would start by documenting what you have, both electrically and mechanically. +1 if your schematic is awesome. Then head over to hackaday and post an open source project log. I feel a few renegade engineers might take interest, and maybe even lend a hand. Also, on a personal note, you look nuts, like ya do, but you present yourself very well. Normal people don't like that, it shatters there plastic ideas and skewed world views. Stay weird, and don't give up, the world needs more free thinkers. I'm serious about the documentation, deriving electrical connections from a picture is hard and often impossible. p.s. I might have been the guy that helped you 6 or so months ago, I'm glad its working.
  3. I completely agree, 90% of the C++ alternatives are safer, and switching between types is a pain. void see_safe() { //When input is 123456789 char buff[9]; scanf("%8s", buff); //Buffer overflow's can't exist }
  4. I did use C++, I should have made that clear so the OP wasn't confused. and using <cstdio> is perfectly valid, its still technically a part of C++. You should post a code snip-it for comparison, adding relevant content will benefit everyone.
  5. Spoiler

    signal-2020-09-07-154422_002.thumb.jpeg.c92f6b74201f759d5cddce72f5dad3fe.jpeg

    signal-2020-09-07-154422_001.thumb.jpeg.ef145f98629df2ed75572863346a6199.jpeg

    When your hands are just to damn small.....

  6. #include <random> #include <fstream> #define SIZE /*1kb*/ 1024 //size of rnd file #define O_F_NAME "out.bin" //output file name int main() { printf("Here's a tissue\n"); size_t _meow = 0; char *rnd = new char[SIZE] {0x00}; std::random_device rd; std::mt19937 generator(rd()); std::uniform_int_distribution<char> distribution(0,255); while(_meow < SIZE) rnd[_meow++] = distribution(generator); std::ofstream output(O_F_NAME, std::ofstream::binary | std::ofstream::trunc); if(output.is_open()) output.write(rnd, SIZE); else printf("fail\n"); output.close(); delete[] rnd; printf("fin!\n"); return 0; } //line 20 I would really be interested in seeing the GO (golang) source you speak of. Every failure is an opportunity to learn.
  7. Info dump: More information would be appreciated. "Basically its got a configuration loaded", how? was it working in the past, if so, what changed. Is it a new board?
  8. Ebay, That's where I get all my chem's. Just don't wind up on a watch list. https://www.ebay.com/itm/Copper-Sulfate-Pentahydrate-Crystals-99-Pure-5-lbs-Bag/132132964114?hash=item1ec3bd0712:g:~xoAAOSwjDZYYq65 https://chemistry.stackexchange.com/questions/60590/what-is-the-difference-between-copper-sulfate-and-copper-sulfate-pentahydrate
  9. yeah, no worries, glad ya got it working.
  10. Just pay super close attention to this clip https://youtu.be/v7A_fFHfN_c?t=60 notice, when the rest button is pressed, the devices com port changes from 36 to 37. The run time com port is 36, the bootloader com port is 37. You need the bootloader com port to be active when uploading.
  11. I don't know what else to try, sorry I couldn't help ya out.
  12. Try this? see attached. XLoader_updated.zip
  13. Something worth noting, XLoader is kinda old, and the board files aren't very up to date, I didn't have the "Leonardo" selection in the drop down. I downloaded my copy of XLoader from here, did you also? if so, how did you add your avrdude configuration for the Leonardo board?
  14. Do a quick test for me so I can verify that your boards not cooked. Upload the 'blinky' example with the Arduino IDE. IF your led starts blinking I might have a suggestion.
  15. Side note, you might need to install the Arduino IDE to get the right windows drivers for your Leonardo board (slipped my mind).
  16. Is your board recognized in device manager? If so, dose the com port change when you enter the boot-loader? I highly recommend watching the vid I linked, it walks you though the process step by step. If at any point during this process your results deviate from whats expected. Post what you were doing, and what the outcome was. screen shots help too.
  17. Try baud "57600", but again, is there a specific reason your using XLoader over the arduino IDE?
×