First, you need to learn to do subnetting.
You cannot assign a single /29 followed by a /28 subnet.
Follow these rules:
Write down how many subnets (Vlans) you need
Count the planned hosts in each of the Vlans
You can have 512, 256, 128, 64, 32, 16, 8, 4 addresses in a /23 Supernet (Usable hosts = minus 2 for Network Address and Broadcast Address)
Now using the first two point calculate what subnet suits your Vlans. For example - if you plan on having 3 APs, your subnet should have at least 3 host addresses, which means that a subnet with 4 addresses will not work. The closes one is a subnet with 8 addresses, which equals /29 (255.255.255.248).
Linking Vlan with a subnet should be done with the future in mind. If you assign a /29 for your APs today and tomorrow you decide to add 4 more APs, then you will get in trouble, because you cannot fit 7 hosts in an 8 address network ;)
So, suppose you end up with:
81 worker computers
34 administration computers
18 printers
3 APs
This means you need 1 subnet of 128 addresses for the workers, one subnet of 64 addresses for the administration, one subnet of 32 for printers and one subnet of 8 for APs.
Now how we actually do the subnetting - WE DIVIDE BY TWO, ALWAYS
Our Supernet is 192.168.100.0/24 (example) = 256 addresses
Divide by 2 we get two subnets 128 addresses each
192.168.100.0/25 - This subnet goes for workers. 192.168.100.1 is the "Gateway" for all the host
192.168.100.128/25
We continue "subnetting" the remaining subnet
192.168.100.128/25
Divide by 2:
192.168.100.128/26 - This subnet (64 addresses) goes for Administration computers
192.168.100.192/26
Continue "subnetting"
192.168.100.192/26
Divide by 2:
192.168.100.192/27 - This subnet (32 addresses) goes for the printers
192.168.100.224/27
Continue "subnetting"
192.168.100.192/27
Divide by 2:
192.168.100.224/28 - 16 addresses - now either chose this subnet if you think in the future you will go above 6 APs
192.168.100.240/28 - 16 addresses
or, divide once more to get an 8 address subnet:
192.168.100.224/28
192.168.100.224/29 - 8 addresses for the APs
192.168.100.232/29
192.168.100.240/29
192.168.100.248/29
If you have troubles understanding what I wrote - ask :)