Module ESP8266 without TF on Amiga

Help & news on accelerators from TF, Amiga, Atari, CD32 etc

Moderators: terriblefire, Terriblefire Moderator

terriblefire
Admin sponsor
Admin sponsor
Posts: 5686
Joined: 28 Aug 2017 22:56
Location: Glasgow, UK

Re: Module ESP8266 without TF on Amiga

Post by terriblefire »

dalek wrote: 16 Apr 2020 04:34
kulamario wrote: 16 Apr 2020 03:34 On amiga I think is 12V

No, it's 5V per schematics.
The Amiga serial port is RS232.. which is +/-12V.

I see the A500 cheaped out and didnt do it right it seems to pump out +5 and -5V. It has buffer chips that will take +/- 12V back down to 5V.

but you still need assume RS232 spec at the peripheral as someone could plug this into a real computer.
———
"It is not necessarily a supply voltage at no load, but the amount of current it can provide when touched that
indicates how much hurting you shall receive."
User avatar
kulamario
Posts: 238
Joined: 29 Nov 2019 19:20
Location: Greystones

Re: Module ESP8266 without TF on Amiga

Post by kulamario »

On my schematic is VCC = 3.3V

Screenshot_20200416-091645_Samsung Internet.jpg
You do not have the required permissions to view the files attached to this post.
User avatar
kulamario
Posts: 238
Joined: 29 Nov 2019 19:20
Location: Greystones

Re: Module ESP8266 without TF on Amiga

Post by kulamario »

But I not use my project
I try to setup like on picture

Anybody can tell me how set up esp8266?
I must change baudrate and mode in esp8266?
Or just upload firmware to esp8266?

ESP8266 to Amiga.png
You do not have the required permissions to view the files attached to this post.
terriblefire
Admin sponsor
Admin sponsor
Posts: 5686
Joined: 28 Aug 2017 22:56
Location: Glasgow, UK

Re: Module ESP8266 without TF on Amiga

Post by terriblefire »

kulamario wrote: 16 Apr 2020 09:22 But I not use my project
I try to setup like on picture

Anybody can tell me how set up esp8266?
I must change baudrate and mode in esp8266?
Or just upload firmware to esp8266?
Follow the guide on the esp_slip_router page. For an A500 you will need to drop the baud rate. I dont know what the magic number that will work is.. you'll need to experiment. Id start at 38400 and if that doesnt work try 19200.
———
"It is not necessarily a supply voltage at no load, but the amount of current it can provide when touched that
indicates how much hurting you shall receive."
User avatar
kulamario
Posts: 238
Joined: 29 Nov 2019 19:20
Location: Greystones

Re: Module ESP8266 without TF on Amiga

Post by kulamario »

I dnt know what is wrong
I setup baudrate 38400 via AT commands
After this I setup softAP+Station mode
Connect to my WIFI via ESplorer
Next what i done upload firmware to esp8266 from https://github.com/terriblefire/terribl ... er/esp8266
Connect to amiga
Install roadshow
double click on install script

I check on amiftp no connection

I must write somewhere ssid and password agin ?

Maybe someone can record movie how to setup from being to the end
Whole process as well how to prepare esp8266 on windows

This instruction is no clear for me I no use linux
https://github.com/martin-ger/esp_slip_router
terriblefire
Admin sponsor
Admin sponsor
Posts: 5686
Joined: 28 Aug 2017 22:56
Location: Glasgow, UK

Re: Module ESP8266 without TF on Amiga

Post by terriblefire »

kulamario wrote: 16 Apr 2020 18:42 I dnt know what is wrong
I setup baudrate 38400 via AT commands
After this I setup softAP+Station mode
Connect to my WIFI via ESplorer
Next what i done upload firmware to esp8266 from https://github.com/terriblefire/terribl ... er/esp8266
Connect to amiga
Install roadshow
double click on install script

I check on amiftp no connection

I must write somewhere ssid and password agin ?

Maybe someone can record movie how to setup from being to the end
Whole process as well how to prepare esp8266 on windows

This instruction is no clear for me I no use linux
https://github.com/martin-ger/esp_slip_router
What AT commands? The baudrate is set in the ESP router. You need to slattach to it .

Code: Select all

Usage as STA
In this mode the ESP connects to the internet via an AP with ssid, password and offers at UART0 a SLIP interface with IP address 192.168.240.1. This default can be changed in the file user_config.h.

To connect a Linux-based host, start the firmware on the ESP, connect it via serial to USB, and use the following commands on the host:

sudo slattach -L -p slip -s 115200 /dev/ttyUSB0&
sudo ifconfig sl0 192.168.240.2 pointopoint 192.168.240.1 up mtu 1500

telnet 192.168.240.1 7777

gives you terminal access to the esp as router. On the ESP you then enter:

CMD>set ssid <your_ssid> 
CMD>set password <your_pw> 
CMD>set use_ap 0
CMD>save
CMD>reset

You need to do that in a linux environment. I have a mac way of doing the SLAttach using https://github.com/antoinealb/serial-line-ip-osx

Code: Select all

sudo slip2tun -p /dev/cu.usbserial-1410 -b 19200 -l 192.168.240.2 -r 192.168.240.1
The important bit is when you get into the router via telnet you do

Code: Select all

CMD>set bitrate <yourbitrate>
———
"It is not necessarily a supply voltage at no load, but the amount of current it can provide when touched that
indicates how much hurting you shall receive."
User avatar
kulamario
Posts: 238
Joined: 29 Nov 2019 19:20
Location: Greystones

Re: Module ESP8266 without TF on Amiga

Post by kulamario »

So is not possible to setup on Windows this ?
I must download and instal some linux
With one I'll be good ?
terriblefire
Admin sponsor
Admin sponsor
Posts: 5686
Joined: 28 Aug 2017 22:56
Location: Glasgow, UK

Re: Module ESP8266 without TF on Amiga

Post by terriblefire »

kulamario wrote: 16 Apr 2020 21:32 So is not possible to setup on Windows this ?
I must download and instal some linux
With one I'll be good ?
I dont actually know. I cant find any windows slip driver that works on a COM port.
———
"It is not necessarily a supply voltage at no load, but the amount of current it can provide when touched that
indicates how much hurting you shall receive."
User avatar
kulamario
Posts: 238
Joined: 29 Nov 2019 19:20
Location: Greystones

Re: Module ESP8266 without TF on Amiga

Post by kulamario »

So wait for me long journey with discovery linux
dalek
Posts: 232
Joined: 08 Nov 2018 11:03
Location: NSW Australia

Re: Module ESP8266 without TF on Amiga

Post by dalek »

kulamario wrote: 16 Apr 2020 18:42 I dnt know what is wrong
I setup baudrate 38400 via AT commands
...
If you set the baud rate with AT commands you have done it wrong.

You need to flash the special firmware: https://github.com/martin-ger/esp_slip_router setting the baudrate is done with the 'set bitrate' command.

Find a guide for using esptool.py from windows: https://www.google.com/search?client=fi ... py+windows but make sure you use the special esp_slip_router firmware instead.

Return to “Terriblefire's channel”

Who is online

Users browsing this forum: ClaudeBot and 8 guests