If I understand your posts:
You have a Raspberry Pi Zero W, connected with an HDMI monitor and USB wireless keyboard and mouse?
You are using a 5V 1.2A micro USB power supply.
When you power it up, you see output on the monitor but the keyboard and mouse don't work?
I have no experience of using wireless keyboards on the Pi Zero W so I think you should try to get it working headless first of all:
On your PC you will need the following programs - they are all free.
Etcher
https://etcher.io/
Advanced IP Scanner
http://www.advanced-ip-scanner.com/ or Angry IP Scanner
https://angryip.org/
Notepad++
https://notepad-plus-plus.org/
Putty
https://putty.org/
Download the latest Raspbian image from
https://www.raspberrypi.org/downloads/raspbian/ Use the desktop versioon, not Lite.
With Etcher, burn Raspbian to your SD card. There is no need to unzip Raspbian, and if/when Windows says you have to format the disk in drive whatever, click Cancel.
When it finishes writing and checking the SD card, close Etcher.
Eject the SD card from your PC then reinsert it. Don't let Windows format it!
In Windows Explorer, open the small "boot" drive on the SD card. Create a new text file "ssh".
Open Notepad++. Make a new file and copy and paste this into it
Code: Select all
ctrl_interface=DIR=/var/run/wpa_supplicant GROUP=netdev
update_config=1
country=GB
network={
ssid="yourssid"
psk="yourpassword"
}
Change "yourssid" and "yourpassword" to match your wifi settings. They need to be enclosed in quotes.
NB if your wifi uses anything except WPA/WPA2 encryption, the file will need different contents.
Click Edit, EOL Conversion and choose "Unix (LF)"
Click File, Save As. Save it in the boot partition as wpa_supplicant.conf.
Close Notepad++.
In Windows Explorer, check that wpa_supplicant.conf is shown as a "CONF File" not a "Text Document".
Eject the SD card and put it in your Pi. Don't connect monitor or any USB device.
Connect your USB power supply.
Allow the Pi a couple of minutes for the first boot and to connect to Wifi.
Open Advanced IP Scanner or Angry IP Scanner and click Scan. If the Pi is connected there will be a line something like this
Code: Select all
Ok raspberrypi 192.168.1.145 Raspberry Pi Foundation B8:27:EB:C7:70:C7
Make a note of the IP address.
Open Putty and put the IP address in the "Host Name (or IP Address)" box. Click Open
A terminal window should open. Login as pi, password raspberry.
Congratulations, you have command line access to your Pi!
Next step is to get access to the Raspbian desktop. You can do that headless from your PC too but this post is long enough already!