# Wifi (WIP)
WARNING
This documentation is only for beta tester and not finished
# Firmware
The firmware contains:
- Http server: Allow to remotely control fenrir by using an http rest api
- Http client: Allow to stream content from a custom webserver
Wifi starts 2 seconds after power on.
The client is always active, you can use the client api in games.
The menu doesn't handle yet open/close/launch api
# Setup wifi
You can setup wifi by editing the fenrir.cfg in the sd root with the correct settings.
{
"wifi_host": "192.168.0.143:3000", // ip of the webserver
"wifi_ssid": "ssid", // wifi ssid
"wifi_password": "password" // wifi password
}
# Launch Game streaming
In menu options, use Wifi WIP entry.
It will stream data from the webserver
# Client API
- GET /api/v1/ls/*
@todo...
- GET /api/v1/launch/*
@todo...
- GET /api/v1/close_lid
@todo...
- GET /api/v1/open_lid
@todo...
# Server API
@todo...