Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Next revision
Previous revision
Next revisionBoth sides next revision
sdk:sdk [2018/09/18 08:44] – [The Language] jurascheksdk:sdk [2021/03/21 09:55] – [Serial] fachet
Line 14: Line 14:
 * otherwise we 'd have to send a short message . * otherwise we 'd have to send a short message .
 */ */
-for ( attempts = 0; attempts < 3; attempts ++) { +for ( attempts=0; attempts<3; attempts ++) { 
-  if ( nb_serial_read ("serial0") == " Knock Knock !") {+  if ( nb_serial_read ("serial0") == "Knock Knock !") {
     nb_serial_write ("serial0", "Who 's there ?");     nb_serial_write ("serial0", "Who 's there ?");
     if ( nb_serial_read ("serial0") == " Santa ") {     if ( nb_serial_read ("serial0") == " Santa ") {
Line 133: Line 133:
 ==== GPS ==== ==== GPS ====
   * [[sdk:gps-udp-broadcast|Broadcast selected GPS NMEA data to different UDP ports]]   * [[sdk:gps-udp-broadcast|Broadcast selected GPS NMEA data to different UDP ports]]
 +  * [[sdk:gps-udp-client-GNSStoGPS|Send GNSS data to a remote UDP port in $GP instead of $GN format ]]
  
 ==== Serial ==== ==== Serial ====
   * [[sdk:serial-point-to-multipoint|Serial Point to Multipoint]]   * [[sdk:serial-point-to-multipoint|Serial Point to Multipoint]]
-  * [[sdk::gps2serial|Write the GPS NMEA Frames to the Serial Interface]]+  * [[sdk::gps2serial|Write the GNSS NMEA Frames to the Serial Interface]] 
 +  * [[sdk::gps2serial-gnsstogps|Write the GNSS NMEA Frames to the Serial Interface converted to GPS]]
   * [[sdk::serialDatalogger|Read data from the serial port and write it to files in the flash]]   * [[sdk::serialDatalogger|Read data from the serial port and write it to files in the flash]]
   * [[sdk::hex2serial|Write non ASCII String to the Serial Port]]   * [[sdk::hex2serial|Write non ASCII String to the Serial Port]]
Line 150: Line 152:
   * [[sdk::mqtt_simple_status|Send Router Status Informations to an MQTT Broker]]   * [[sdk::mqtt_simple_status|Send Router Status Informations to an MQTT Broker]]
   * [[sdk::mqtt_advanced_status|Send Router Status Informations to an MQTT Broker - Advanced Version]]   * [[sdk::mqtt_advanced_status|Send Router Status Informations to an MQTT Broker - Advanced Version]]
 +  * [[sdk::mqtt_dio| Publish changes of the Digitial In or Out Interfaces via MQTT]]
 ==== Wifi / WLAN ==== ==== Wifi / WLAN ====
   * [[sdk::wifimodechanger|Change Wifi Mode based on SSID]]   * [[sdk::wifimodechanger|Change Wifi Mode based on SSID]]
 +  * [[sdk::wifiprobingclients|Show probing WiFi clients]]
 ==== Various ==== ==== Various ====
   * [[sdk:telnet-run-a-command-using-telnet|Run a command using Telnet]]   * [[sdk:telnet-run-a-command-using-telnet|Run a command using Telnet]]
Line 182: Line 186:
 |[[sdk:scripts:gps-udp-client-compat|gps-udp-client-compat.txt]]| This script sends the local GPS NMEA stream (incl. serial/checksum) to a remote UDP server.| |[[sdk:scripts:gps-udp-client-compat|gps-udp-client-compat.txt]]| This script sends the local GPS NMEA stream (incl. serial/checksum) to a remote UDP server.|
 |[[sdk:scripts:gps-udp-client|gps-udp-client.txt]]| This script sends the local GPS NMEA stream to a remote UDP server.| |[[sdk:scripts:gps-udp-client|gps-udp-client.txt]]| This script sends the local GPS NMEA stream to a remote UDP server.|
 +|[[sdk:scripts:gps2serial-gnsstogps|gps2serial-gnsstogps.txt]]| This script sends the local GPS NMEA stream to the internal serial interface. t checks for the correct CR/LF end of line characters and convert messages $GN to $GP.|
 |[[sdk:scripts:gps-upd-client-compat|gps-upd-client-compat.txt]]| This script sends the local GPS NMEA stream to a remote UDP server (incl. device identity).| |[[sdk:scripts:gps-upd-client-compat|gps-upd-client-compat.txt]]| This script sends the local GPS NMEA stream to a remote UDP server (incl. device identity).|
 |[[sdk:scripts:led|led.txt]]| This script can be used to set a LED| |[[sdk:scripts:led|led.txt]]| This script can be used to set a LED|