mirror of
				https://github.com/KevinMidboe/Arduino.git
				synced 2025-10-29 17:40:11 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			98 lines
		
	
	
		
			2.4 KiB
		
	
	
	
		
			C++
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			98 lines
		
	
	
		
			2.4 KiB
		
	
	
	
		
			C++
		
	
	
		
			Executable File
		
	
	
	
	
| #ifndef Stations_h
 | |
| #define Stations_h
 | |
| 
 | |
| #include "Arduino.h"
 | |
| extern "C" {
 | |
|   #include "user_interface.h"
 | |
| }
 | |
| #include "language.h"
 | |
| #include "SimpleList.h"
 | |
| #include "Accesspoints.h"
 | |
| #include "Names.h"
 | |
| 
 | |
| #define STATION_LIST_SIZE 60
 | |
| extern Accesspoints accesspoints;
 | |
| extern Names    names;
 | |
| extern uint8_t  wifi_channel;
 | |
| extern uint32_t currentTime;
 | |
| 
 | |
| extern String searchVendor(uint8_t* mac);
 | |
| extern bool macMulticast(uint8_t* mac);
 | |
| extern bool macValid(uint8_t* mac);
 | |
| extern bool macBroadcast(uint8_t* mac);
 | |
| extern String bytesToStr(uint8_t* b, uint32_t size);
 | |
| 
 | |
| class Stations {
 | |
|     public:
 | |
|         Stations();
 | |
| 
 | |
|         void sort();
 | |
|         void sortAfterChannel();
 | |
| 
 | |
|         void select(int num);
 | |
|         void deselect(int num);
 | |
|         void remove(int num);
 | |
| 
 | |
|         void select(String ssid);
 | |
|         void deselect(String ssid);
 | |
|         void remove(String ssid);
 | |
| 
 | |
|         void add(uint8_t* mac, int accesspointNum);
 | |
| 
 | |
|         void selectAll();
 | |
|         void deselectAll();
 | |
|         void removeAll();
 | |
|         void removeOldest();
 | |
| 
 | |
|         String getNameStr(int num);
 | |
|         String getAPStr(int num);
 | |
|         String getMacStr(int num);
 | |
|         String getMacVendorStr(int num);
 | |
|         String getVendorStr(int num);
 | |
|         String getTimeStr(int num);
 | |
|         String getSelectedStr(int num);
 | |
|         uint8_t* getAPMac(int num);
 | |
|         String getAPMacStr(int num);
 | |
|         uint8_t* getMac(int num);
 | |
|         uint32_t* getPkts(int num);
 | |
|         uint32_t* getTime(int num);
 | |
|         uint8_t getCh(int num);
 | |
|         int getAP(int num);
 | |
|         bool getSelected(int num);
 | |
|         bool hasName(int num);
 | |
| 
 | |
|         void print(int num);
 | |
|         void print(int num, bool header, bool footer);
 | |
|         void printAll();
 | |
|         void printSelected();
 | |
| 
 | |
|         int count();
 | |
|         int selected();
 | |
| 
 | |
|         bool check(int num);
 | |
|         bool changed = false;
 | |
| 
 | |
|     private:
 | |
|         struct Station {
 | |
|             uint8_t   ap;
 | |
|             uint8_t   ch;
 | |
|             uint8_t * mac;
 | |
|             uint32_t* pkts;
 | |
|             uint32_t* time;
 | |
|             bool      selected;
 | |
|         };
 | |
| 
 | |
|         SimpleList<Station>* list;
 | |
| 
 | |
|         int findStation(uint8_t* mac);
 | |
|         int findAccesspoint(uint8_t* mac);
 | |
| 
 | |
|         bool internal_check(int num);
 | |
|         void internal_select(int num);
 | |
|         void internal_deselect(int num);
 | |
|         void internal_add(uint8_t* mac, int accesspointNum);
 | |
|         void internal_remove(int num);
 | |
|         void internal_removeAll();
 | |
| };
 | |
| 
 | |
| #endif // ifndef Stations_h
 |