Jump to content

Shahin

Member
  • Posts

    67
  • Joined

  • Last visited

Awards

This user doesn't have any awards

About Shahin

  • Birthday Mar 29, 1997

Profile Information

  • Gender
    Male
  • Location
    Portsmouth UK
  • Interests
    Arts & Crafts, Computing, Robotics
  • Occupation
    Studying Mechatroncis & Robotics.

Recent Profile Visitors

928 profile views
  1. My motherboard is this - https://www.msi.com/Motherboard/support/H110M-PRO-VD.html Where do I check whether it has a TPM chip?
  2. Hello, So I would like to encrypt my PC drives. It's all well and good to have secure passwords but you can easily take out a drive and plug it into another PC, load up linux and see everything. I'm trying to avoid that scenario. What types of protection do you use for your drives?
  3. Shahin

    ADS1292R

    Has anyone here programmed the ADS1292R ECG Arduino shield?
  4. Hi, I've written a few programs on an NUCLEO STM32F429ZI using pure registers and MBED. I'm looking to save data to the cloud using the inbuilt Ethernet connection, I was wondering if anyone here has done that? I've successfully saved data to an SD card but now require data to be off-loaded to the cloud.
  5. Hi, I need help creating a script to to do the following tasks in linux and I'm not sure how roscore open new terminal cd ~/catkin_ws source devel/setup.bash roslaunch my_dynamixel_tutorial controller_manager.launch open new terminal source devel/setup.bash roscd my_dynamixel_tutorial roslaunch my_dynamixel_tutorial start_meta_controller.launch
  6. I've installed Mbed Studio, had no changes, got the blinky template but having this issue compiling, any idea what the issue was Compile [100.0%]: watchdog_api.c Link: mbed-os-example-blinky [Warning] @0,0: L3912W: Option 'legacyalign' is deprecated. [Error] @0,0: L6636E: Pre-processor step failed for 'BUILD/NUCLEO_F429ZI/ARMC6/.link_script.sct' [Error] @0,0: L6372E: Image needs at least one load region. Warning: L3912W: Option 'legacyalign' is deprecated. armclang: error: no such file or directory: 'C:\Users\Azizul' armclang: error: no such file or directory: 'Haque\AppData\Local\Temp\p4014-2' armclang: error: no such file or directory: 'Haque\AppData\Local\Temp\p4014-3' armclang: error: no input files Error: L6636E: Pre-processor step failed for 'BUILD/NUCLEO_F429ZI/ARMC6/.link_script.sct' Error: L6372E: Image needs at least one load region. Not enough information to list the image map. Finished: 1 information, 1 warning and 2 error messages. [ERROR] Warning: L3912W: Option 'legacyalign' is deprecated. armclang: error: no such file or directory: 'C:\Users\Azizul' armclang: error: no such file or directory: 'Haque\AppData\Local\Temp\p4014-2' armclang: error: no such file or directory: 'Haque\AppData\Local\Temp\p4014-3' armclang: error: no input files Error: L6636E: Pre-processor step failed for 'BUILD/NUCLEO_F429ZI/ARMC6/.link_script.sct' Error: L6372E: Image needs at least one load region. Not enough information to list the image map. Finished: 1 information, 1 warning and 2 error messages.
  7. Solved, Not sure how to delete post
  8. I'm creating an int to char function, but struggling with parameter passing char num_to_char(short Number, int POS) // Less than 100,000 { char Num_char[5] = {'0','0','0','0','0'}; while (Number > 10000) { Num_char[0]++; Number = Number - 10000; } while (Number > 1000) { Num_char[1]++; Number = Number - 1000; } while (Number > 100) { Num_char[2]++; Number = Number - 100; } while (Number > 10) { Num_char[3]++; Number = Number - 10; } while (Number > 1) { Num_char[4]++; Number = Number - 1; } return Num_char[POS]; calling back voltage[0] = num_to_char( Number, 0); voltage[1] = '.'; voltage[2] = num_to_char( Number, 1 ); voltage[3] = num_to_char( Number, 2); voltage[4] = num_to_char( Number, 3); voltage[5] =num_to_char( Number, 4); voltage[6] = 'V'; Any help?
  9. I have a prusa i3 Pro B, Above the metal block there is a gap, my filament gets stuck here and builds up. Any idea why?
  10. Thats fine, I have a wireless charger built into my desk, which I use for my phone. Slow charging is fine as I do not use it often and would rather have ease of access. Another question. this battery has two micro usb inlets for quicker charging. if I have two wireless pads back to back will it increase the speed. Logically speaking the magnetic field would penetrate both the pads as there isn't much distance?
  11. I have this powerbank: https://www.amazon.co.uk/EasyAcc-26000mAh-External-Battery-Portable-Black-Orange/dp/B016DA61V2/ref=sr_1_5?ie=UTF8&qid=1537036230&sr=8-5&keywords=easyacc+powerbank is there any issues of attaching a micro usb wireless charging pad such as: https://www.amazon.co.uk/EooCoo-Universal-Smartphones-Connector-USB-Positive/dp/B075RY6SYH/ref=sr_1_2?ie=UTF8&qid=1537035724&sr=8-2&keywords=micro+usb+wireless+charging+receiver Thank you
  12. I recently bought an XPS 15 4k and most apps scale with windows, currently at 250%. but VLC media play does not. any idea how I can change it?
  13. Gaming is really just an after thought. The XPS 15 would be brilliant for my needs. Thank you!!!
  14. I do not the space in my current housing, I also plan on doing a placement year in Japan hopefully so a desktop is not really an option. Lightly will be better. I'm not sure if a 1080 will fit the budget
  15. Hi, I'm looking for a laptop for £2000 uk pounds. I will be mainly using it for programming, circuit simulations and some gaming. I'm thinking of getting this - https://www.scan.co.uk/products/156-aorus-x5-v6-cf1-qhdplus-ips-g-sync-i7-6820hk-16gb-ddr4-256gb-m2-pcie-ssdplus1tb-hdd-8gb-gtx-1070 but seeing if anyone has any alternatives. Ideally with thunderbolt 3
×