Documentation ¶
Index ¶
- Constants
- type ConnectionStatus
- type Device
- func (d *Device) CheckDataSent(sock uint8) (bool, error)
- func (d *Device) Configure()
- func (d *Device) Disconnect() error
- func (d *Device) GetClientState(sock uint8) (uint8, error)
- func (d *Device) GetConnectionStatus() (ConnectionStatus, error)
- func (d *Device) GetCurrentBSSID() (MACAddress, error)
- func (d *Device) GetCurrentEncryptionType() (EncryptionType, error)
- func (d *Device) GetCurrentRSSI() (int32, error)
- func (d *Device) GetCurrentSSID() (string, error)
- func (d *Device) GetDataBuf(sock uint8, buf []byte) (int, error)
- func (d *Device) GetFwVersion() (string, error)
- func (d *Device) GetHostByName(hostname string) (IPAddress, error)
- func (d *Device) GetIP() (ip, subnet, gateway IPAddress, err error)
- func (d *Device) GetMACAddress() (MACAddress, error)
- func (d *Device) GetNetworkBSSID(idx int) (MACAddress, error)
- func (d *Device) GetNetworkChannel(idx int) (uint8, error)
- func (d *Device) GetNetworkEncrType(idx int) (EncryptionType, error)
- func (d *Device) GetNetworkRSSI(idx int) (int32, error)
- func (d *Device) GetNetworkSSID(idx int) string
- func (d *Device) GetReasonCode() (uint8, error)
- func (d *Device) GetSocket() (uint8, error)
- func (d *Device) GetTemperature() (float32, error)
- func (d *Device) GetTime() (string, error)
- func (d *Device) NewDriver() net.DeviceDriver
- func (d *Device) Ping(ip IPAddress, ttl uint8) int16
- func (d *Device) ScanNetworks() (uint8, error)
- func (d *Device) SendData(buf []byte, sock uint8) (uint16, error)
- func (d *Device) SetDNS(which uint8, dns1 uint32, dns2 uint32) error
- func (d *Device) SetDebug(on bool) error
- func (d *Device) SetHostname(hostname string) error
- func (d *Device) SetIP(which uint8, ip uint32, gw uint32, subnet uint32) error
- func (d *Device) SetKey(ssid string, index uint8, key string) error
- func (d *Device) SetNetwork(ssid string) error
- func (d *Device) SetNetworkForAP(ssid string) error
- func (d *Device) SetPassphrase(ssid string, passphrase string) error
- func (d *Device) SetPassphraseForAP(ssid string, passphrase string) error
- func (d *Device) SetPowerMode(mode uint8) error
- func (d *Device) StartClient(addr uint32, port uint16, sock uint8, mode uint8) error
- func (d *Device) StartScanNetworks() (uint8, error)
- func (d *Device) StopClient(sock uint8) error
- type Driver
- func (drv *Driver) ConnectSSLSocket(addr, portStr string) error
- func (drv *Driver) ConnectTCPSocket(addr, portStr string) error
- func (drv *Driver) ConnectUDPSocket(addr, sport, lport string) error
- func (drv *Driver) DisconnectSocket() error
- func (drv *Driver) GetDNS(domain string) (string, error)
- func (drv *Driver) IsConnected() (bool, error)
- func (drv *Driver) IsSocketDataAvailable() bool
- func (drv *Driver) ReadSocket(b []byte) (n int, err error)
- func (drv *Driver) Response(timeout int) ([]byte, error)
- func (drv *Driver) StartSocketSend(size int) error
- func (drv *Driver) Write(b []byte) (n int, err error)
- type EncryptionType
- type Error
- type IPAddress
- type MACAddress
Constants ¶
View Source
const ( MaxSockets = 4 MaxNetworks = 10 MaxAttempts = 10 MaxLengthSSID = 32 MaxLengthWPAKey = 63 MaxLengthWEPKey = 13 LengthMacAddress = 6 LengthIPV4 = 4 WlFailure = -1 WlSuccess = 1 StatusNoShield ConnectionStatus = 255 StatusIdle ConnectionStatus = 0 StatusNoSSIDAvail ConnectionStatus = 1 StatusScanCompleted ConnectionStatus = 2 StatusConnected ConnectionStatus = 3 StatusConnectFailed ConnectionStatus = 4 StatusConnectionLost ConnectionStatus = 5 StatusDisconnected ConnectionStatus = 6 EncTypeTKIP EncryptionType = 2 EncTypeCCMP EncryptionType = 4 EncTypeWEP EncryptionType = 5 EncTypeNone EncryptionType = 7 EncTypeAuto EncryptionType = 8 TCPStateClosed = 0 TCPStateListen = 1 TCPStateSynSent = 2 TCPStateSynRcvd = 3 TCPStateEstablished = 4 TCPStateFinWait1 = 5 TCPStateFinWait2 = 6 TCPStateCloseWait = 7 TCPStateClosing = 8 TCPStateLastACK = 9 TCPStateTimeWait = 10 FlagCmd = 0 FlagReply = 1 << 7 FlagData = 0x40 NinaCmdPos = 1 NinaParamLenPos = 2 CmdStart = 0xE0 CmdEnd = 0xEE CmdErr = 0xEF CmdSetNet = 0x10 CmdSetPassphrase = 0x11 CmdSetKey = 0x12 CmdSetIPConfig = 0x14 CmdSetDNSConfig = 0x15 CmdSetHostname = 0x16 CmdSetPowerMode = 0x17 CmdSetAPNet = 0x18 CmdSetAPPassphrase = 0x19 CmdSetDebug = 0x1A CmdGetTemperature = 0x1B CmdGetReasonCode = 0x1F CmdGetConnStatus = 0x20 CmdGetIPAddr = 0x21 CmdGetMACAddr = 0x22 CmdGetCurrSSID = 0x23 CmdGetCurrBSSID = 0x24 CmdGetCurrRSSI = 0x25 CmdGetCurrEncrType = 0x26 CmdScanNetworks = 0x27 CmdStartServerTCP = 0x28 CmdGetStateTCP = 0x29 CmdDataSentTCP = 0x2A CmdAvailDataTCP = 0x2B CmdGetDataTCP = 0x2C CmdStartClientTCP = 0x2D CmdStopClientTCP = 0x2E CmdGetClientStateTCP = 0x2F CmdDisconnect = 0x30 CmdGetIdxRSSI = 0x32 CmdGetIdxEncrType = 0x33 CmdReqHostByName = 0x34 CmdGetHostByName = 0x35 CmdStartScanNetworks = 0x36 CmdGetFwVersion = 0x37 CmdSendDataUDP = 0x39 CmdGetRemoteData = 0x3A CmdGetTime = 0x3B CmdGetIdxBSSID = 0x3C CmdGetIdxChannel = 0x3D CmdPing = 0x3E CmdGetSocket = 0x3F // All command with DATA_FLAG 0x40 send a 16bit Len CmdSendDataTCP = 0x44 CmdGetDatabufTCP = 0x45 CmdInsertDataBuf = 0x46 // regular format commands CmdSetPinMode = 0x50 CmdSetDigitalWrite = 0x51 CmdSetAnalogWrite = 0x52 ErrTimeoutSlaveReady Error = 0x01 ErrTimeoutSlaveSelect Error = 0x02 ErrCheckStartCmd Error = 0x03 ErrWaitRsp Error = 0x04 ErrUnexpectedLength Error = 0xE0 ErrNoParamsReturned Error = 0xE1 ErrIncorrectSentinel Error = 0xE2 ErrCmdErrorReceived Error = 0xEF ErrNotImplemented Error = 0xF0 ErrUnknownHost Error = 0xF1 ErrSocketAlreadySet Error = 0xF2 ErrConnectionTimeout Error = 0xF3 ErrNoData Error = 0xF4 ErrDataNotWritten Error = 0xF5 ErrCheckDataError Error = 0xF6 ErrBufferTooSmall Error = 0xF7 ErrNoSocketAvail Error = 0xFF NoSocketAvail uint8 = 0xFF )
View Source
const ( ProtoModeTCP = iota ProtoModeUDP ProtoModeTLS ProtoModeMul )
View Source
const (
ReadBufferSize = 128
)
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type ConnectionStatus ¶
type ConnectionStatus uint8
func (ConnectionStatus) String ¶
func (c ConnectionStatus) String() string
type Device ¶
type Device struct { SPI machine.SPI CS machine.Pin ACK machine.Pin GPIO0 machine.Pin RESET machine.Pin // contains filtered or unexported fields }
func (*Device) Disconnect ¶
func (*Device) GetConnectionStatus ¶
func (d *Device) GetConnectionStatus() (ConnectionStatus, error)
func (*Device) GetCurrentBSSID ¶
func (d *Device) GetCurrentBSSID() (MACAddress, error)
func (*Device) GetCurrentEncryptionType ¶
func (d *Device) GetCurrentEncryptionType() (EncryptionType, error)
func (*Device) GetCurrentRSSI ¶
func (*Device) GetCurrentSSID ¶
func (*Device) GetFwVersion ¶
func (*Device) GetMACAddress ¶
func (d *Device) GetMACAddress() (MACAddress, error)
func (*Device) GetNetworkBSSID ¶
func (d *Device) GetNetworkBSSID(idx int) (MACAddress, error)
func (*Device) GetNetworkEncrType ¶
func (d *Device) GetNetworkEncrType(idx int) (EncryptionType, error)
func (*Device) GetNetworkSSID ¶
func (*Device) GetReasonCode ¶
func (*Device) GetTemperature ¶
func (*Device) NewDriver ¶
func (d *Device) NewDriver() net.DeviceDriver
func (*Device) ScanNetworks ¶
func (*Device) SetHostname ¶
func (*Device) SetNetwork ¶
func (*Device) SetNetworkForAP ¶
func (*Device) SetPassphraseForAP ¶
func (*Device) SetPowerMode ¶
func (*Device) StartClient ¶
func (*Device) StartScanNetworks ¶
func (*Device) StopClient ¶
type Driver ¶
type Driver struct {
// contains filtered or unexported fields
}
func (*Driver) ConnectSSLSocket ¶
func (*Driver) ConnectTCPSocket ¶
func (*Driver) ConnectUDPSocket ¶
func (*Driver) DisconnectSocket ¶
func (*Driver) IsConnected ¶
func (*Driver) IsSocketDataAvailable ¶
IsSocketDataAvailable returns of there is socket data available
func (*Driver) StartSocketSend ¶
type EncryptionType ¶
type EncryptionType uint8
func (EncryptionType) String ¶
func (e EncryptionType) String() string
type MACAddress ¶
type MACAddress uint64
func (MACAddress) String ¶
func (addr MACAddress) String() string
Click to show internal directories.
Click to hide internal directories.