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."
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."
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
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
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
———
"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."
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."