Jump to content

Dune II

Member
  • Posts

    10
  • Joined

  • Last visited

Awards

This user doesn't have any awards

Profile Information

  • Location
    Netherlands

Dune II's Achievements

  1. On the left there is no 'Wi-Fi' or 'Ethernet' option, only 'Dial-up', that's strange. Are the adapters disabled? Click on 'Change adapter options' and see if any device is gray/disabled. Right click on a device and go from there.
  2. ProcessStartInfo can handle more parameter settings that can be useful. System.Diagnostics.Process process = new System.Diagnostics.Process(); System.Diagnostics.ProcessStartInfo startInfo = new System.Diagnostics.ProcessStartInfo(); startInfo.WindowStyle = System.Diagnostics.ProcessWindowStyle.Hidden; startInfo.FileName = "cmd.exe"; startInfo.Arguments = "/C ipconfig /all"; process.StartInfo = startInfo; process.Start(); process.WaitForExit(); Added '/C' will exit command window when done and process.WaitForExit() will wait for process to end. Have a look here for more options with ProcessStartInfo.
  3. You're current tornado light is 1460lm and the hue color is 806lm, so it will be less bright. You do need the bridge to control the hue light, without it you can it only turn on and off with the normal light switch. The phone app connects to the bridge by wifi and the bridge connects to the lamp by radio signals (zigbee). If you go for the hue, look for a starters package, it will have all you need and is mostly cheaper. One warning, if you start with hue, you want more
  4. The gibberish could come from interference to the Bluetooth device as there is no write or print to serial in the loop() function. Did you try and wait for the serial to be active in the setup() before using the Serial.println? Just add a line after the Serial.begin with while (!Serial) ; This will wait for the serial connection to be ready. Does not work on all types of Arduino of devices.
  5. No need to use a nullable int, just use the normal int. I'm used to use implicit var, but that only works in visual C# 3.0 and higher.
  6. string myString = "Hello, Th,ere."; var n = myString.LastIndexOf(','); if(n != -1) { myString = myString.Substring(0, n); }
  7. Did you have a look in the CBS logs? Located here: C:\Windows\logs\CBS\CBS*.log
  8. Can be a corrupted download, had the same myself. Did you try the Windows update troubleshooter? Windows update troubleshooter Or have a look here: https://pureinfotech.com/reset-windows-update-windows-10-fix-downloads-installs/
  9. Depends on what you want to make and what you are comfortable with. Take Visual Studio Code as an development environment, that has plenty of different languages and examples and works on Windows, Mac and Linux. Just click around and see what you like.
  10. Hi, What I found easy to understand, was getting the total file size from a folder and it's sub folders. Its easy to check if you're correct and it can be explained step by step visually.
×