Difference between revisions of "KODAK AZ1000"

From Tech
Jump to navigationJump to search
(Created page with "[http://tech.komputilo.org/images/b/b9/Az1000-manual-en.pdf User manual]")
 
Line 1: Line 1:
 
[http://tech.komputilo.org/images/b/b9/Az1000-manual-en.pdf User manual]
 
[http://tech.komputilo.org/images/b/b9/Az1000-manual-en.pdf User manual]
  +
  +
=WiFi protocol=
  +
When turning the function dial to "WiFi", the camera gives the user two options:
  +
  +
* Station (connect camera to existing access point)
  +
* Access point (camera becomes access point)
  +
  +
When choosing "Station" the camera scans available access points, and allows the user to choose one. Next the WiFi password can be entered, and then the camera sits silent.
  +
  +
From here the user somehow has to figure out the IP number received from the DHCP server (log in to your router, use nmap, etc).
  +
  +
I haven't figured out how to get a directory listing, but the following will get image 100_0180.JPG from the camera (if it exists):
  +
  +
GET /DCIM/100KODAK/100_0180.JPG HTTP/1.0
  +
  +
Notice that the camera is picky about the DOS line ending (\r\n), and doesn't accept just plain \n. This works on Unix:
  +
  +
printf 'GET /DCIM/100KODAK/100_0180.JPG HTTP/1.0\r\n\r\n HTTP/1.1' | nc 10.0.0.46 80

Revision as of 21:20, 21 July 2021

User manual

WiFi protocol

When turning the function dial to "WiFi", the camera gives the user two options:

  • Station (connect camera to existing access point)
  • Access point (camera becomes access point)

When choosing "Station" the camera scans available access points, and allows the user to choose one. Next the WiFi password can be entered, and then the camera sits silent.

From here the user somehow has to figure out the IP number received from the DHCP server (log in to your router, use nmap, etc).

I haven't figured out how to get a directory listing, but the following will get image 100_0180.JPG from the camera (if it exists):

GET /DCIM/100KODAK/100_0180.JPG HTTP/1.0

Notice that the camera is picky about the DOS line ending (\r\n), and doesn't accept just plain \n. This works on Unix:

printf 'GET /DCIM/100KODAK/100_0180.JPG HTTP/1.0\r\n\r\n HTTP/1.1' | nc 10.0.0.46 80